logseq/Dockerfile

35 lines
1.0 KiB
Docker
Raw Normal View History

# 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
2021-12-27 05:53:28 +00:00
# Builder image
FROM clojure:openjdk-11-tools-deps-1.10.1.727 as builder
ARG DEBIAN_FRONTEND=noninteractive
2020-12-21 11:07:17 +00:00
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
2020-12-21 11:07:17 +00:00
apt-get install -y nodejs
2021-11-22 01:48:28 +00:00
RUN apt-get update && apt-get install ca-certificates && \
wget --no-check-certificate -qO - https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
2020-12-21 11:07:17 +00:00
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
apt-get update && apt-get install -y yarn
2020-12-21 11:07:17 +00:00
WORKDIR /data
2021-12-27 05:53:28 +00:00
RUN git clone -b fix/docker-bulid-timeout https://github.com/logseq/logseq.git .
2023-01-18 05:13:21 +00:00
RUN printf "%s\n" "network-timeout 240000" >> ~/.yarnrc
RUN yarn install
2023-01-18 05:13:21 +00:00
# Build static resources
2023-01-18 05:19:59 +00:00
RUN yarn release
2021-12-27 05:53:28 +00:00
# Web App Runner image
FROM nginx:stable-alpine
2020-12-21 11:07:17 +00:00
COPY --from=builder /data/static /usr/share/nginx/html
2020-12-21 11:07:17 +00:00