mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.8 KiB
59 lines
1.8 KiB
FROM node:26
|
|
LABEL maintainer="requarks.io"
|
|
|
|
RUN apt-get update && apt-get install -qy --no-install-recommends \
|
|
bash \
|
|
build-essential \
|
|
chromium \
|
|
curl \
|
|
fonts-liberation \
|
|
git \
|
|
gnupg \
|
|
openssh-client \
|
|
pandoc \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
RUN mkdir -p /wiki && \
|
|
mkdir -p /logs && \
|
|
mkdir -p /wiki/data/content && \
|
|
chown -R node:node /wiki /logs
|
|
|
|
WORKDIR /wiki
|
|
|
|
COPY --chown=node:node ./assets ./assets
|
|
COPY --chown=node:node ./blocks/compiled ./blocks/compiled
|
|
COPY --chown=node:node ./server ./server
|
|
COPY --chown=node:node ./dev/build/config.yml ./config.yml
|
|
COPY --chown=node:node ./LICENSE ./LICENSE
|
|
|
|
USER node
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
# The browser the Puppeteer extension drives, installed above rather than downloaded by Puppeteer: the
|
|
# distro keeps it patched, it exists for arm64 as well as amd64, and the image does not carry two copies
|
|
# of Chromium. `PUPPETEER_SKIP_DOWNLOAD` has to be set before the install below for that to hold.
|
|
ENV PUPPETEER_SKIP_DOWNLOAD=true
|
|
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium
|
|
|
|
WORKDIR /wiki/server
|
|
RUN pnpm install --prod --frozen-lockfile
|
|
|
|
# The Puppeteer extension, which server-side page rendering needs. Added here rather than declared in
|
|
# `backend/package.json` because it is an optional extension: an installation that renders its pages in
|
|
# the editor -- which is all of them, on any normal save -- has no use for a browser on the server, and
|
|
# a source checkout should not have to fetch one to install the backend. Pinned like every other
|
|
# dependency, so an image build is reproducible.
|
|
RUN pnpm add puppeteer@25.4.0
|
|
|
|
# Set extensions as installed
|
|
RUN touch node_modules/sharp/wiki_installed.txt
|
|
|
|
WORKDIR /wiki
|
|
|
|
VOLUME ["/wiki/data/content"]
|
|
|
|
EXPOSE 3000
|
|
EXPOSE 3443
|
|
|
|
CMD ["node", "server"]
|