|
|
@@ -1,7 +1,7 @@
|
|
|
# NOTE: please keep it in sync with .github pipelines
|
|
|
# NOTE: during testing make sure to change the branch below
|
|
|
# NOTE: before runing the build-docker GH action edit
|
|
|
-# build-docker.yml and change the release channel to testing
|
|
|
+# build-docker.yml and change the release channel from :latest to :testing
|
|
|
|
|
|
# Builder image
|
|
|
FROM clojure:openjdk-11-tools-deps-1.10.1.727 as builder
|
|
|
@@ -18,11 +18,9 @@ RUN apt-get update && apt-get install ca-certificates && \
|
|
|
|
|
|
WORKDIR /data
|
|
|
|
|
|
-RUN git clone -b fix/docker-bulid-timeout https://github.com/logseq/logseq.git .
|
|
|
+RUN git clone -b master https://github.com/logseq/logseq.git .
|
|
|
|
|
|
-RUN printf "%s\n" "network-timeout 240000" >> ~/.yarnrc
|
|
|
-
|
|
|
-RUN yarn install
|
|
|
+RUN printf "%s\n" "network-timeout 240000" >> ~/.yarnrc && yarn install
|
|
|
|
|
|
# Build static resources
|
|
|
RUN yarn release
|