logseq/Dockerfile

41 lines
1.2 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 running the build-docker GH action edit
# build-docker.yml and change the release channel from :latest to :testing
2021-12-27 05:53:28 +00:00
# Builder image
FROM clojure:temurin-11-tools-deps-1.11.1.1208-bullseye-slim as builder
2021-12-27 05:53:28 +00:00
ARG DEBIAN_FRONTEND=noninteractive
2020-12-21 11:07:17 +00:00
# Install reqs
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
ca-certificates \
apt-transport-https \
gpg
2020-12-21 11:07:17 +00:00
# install NodeJS & yarn
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash -
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | \
tee /etc/apt/trusted.gpg.d/yarn.gpg && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" | \
tee /etc/apt/sources.list.d/yarn.list && \
apt-get update && apt-get install -y nodejs yarn
2020-12-21 11:07:17 +00:00
WORKDIR /data
2021-12-27 05:53:28 +00:00
# build Logseq static resources
RUN git clone -b master https://github.com/logseq/logseq.git .
2023-01-18 05:13:21 +00:00
2023-01-19 15:25:25 +00:00
RUN yarn config set network-timeout 240000 -g && yarn install
2023-01-18 05:13:21 +00:00
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:1.23.3-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