2021-08-23 10:51:26 +02:00
|
|
|
FROM node:16-bullseye
|
|
|
|
|
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install -y \
|
|
|
|
python \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2020-12-28 13:48:47 +02:00
|
|
|
|
2021-12-20 17:08:43 +02:00
|
|
|
# Enables Yarn
|
|
|
|
RUN corepack enable
|
|
|
|
|
2022-01-13 19:39:58 +02:00
|
|
|
RUN echo "Node: $(node --version)" \
|
|
|
|
&& echo "Npm: $(npm --version)" \
|
|
|
|
&& echo "Yarn: $(yarn --version)"
|
2021-08-13 19:59:45 +02:00
|
|
|
|
2020-12-28 13:48:47 +02:00
|
|
|
ARG user=joplin
|
|
|
|
|
|
|
|
RUN useradd --create-home --shell /bin/bash $user
|
|
|
|
USER $user
|
|
|
|
|
2022-01-09 17:36:41 +02:00
|
|
|
ENV NODE_ENV production
|
2022-01-13 19:39:58 +02:00
|
|
|
ENV RUNNING_IN_DOCKER 1
|
|
|
|
EXPOSE ${APP_PORT}
|
2020-12-28 13:48:47 +02:00
|
|
|
|
|
|
|
WORKDIR /home/$user
|
|
|
|
|
2022-01-13 19:39:58 +02:00
|
|
|
RUN mkdir /home/$user/logs \
|
|
|
|
&& mkdir /home/$user/.yarn
|
2021-01-18 12:13:26 +02:00
|
|
|
|
2022-01-13 19:39:58 +02:00
|
|
|
COPY --chown=$user:$user .yarn/patches ./.yarn/patches
|
|
|
|
COPY --chown=$user:$user .yarn/plugins ./.yarn/plugins
|
|
|
|
COPY --chown=$user:$user .yarn/releases ./.yarn/releases
|
|
|
|
COPY --chown=$user:$user package.json .
|
2021-12-20 17:08:43 +02:00
|
|
|
COPY --chown=$user:$user .yarnrc.yml .
|
|
|
|
COPY --chown=$user:$user yarn.lock .
|
2022-01-02 14:48:03 +02:00
|
|
|
COPY --chown=$user:$user gulpfile.js .
|
2020-12-28 13:48:47 +02:00
|
|
|
COPY --chown=$user:$user tsconfig.json .
|
|
|
|
COPY --chown=$user:$user packages/turndown ./packages/turndown
|
|
|
|
COPY --chown=$user:$user packages/turndown-plugin-gfm ./packages/turndown-plugin-gfm
|
|
|
|
COPY --chown=$user:$user packages/fork-htmlparser2 ./packages/fork-htmlparser2
|
2021-12-20 17:08:43 +02:00
|
|
|
COPY --chown=$user:$user packages/server/package*.json ./packages/server/
|
2020-12-28 13:48:47 +02:00
|
|
|
COPY --chown=$user:$user packages/fork-sax ./packages/fork-sax
|
2021-12-20 17:08:43 +02:00
|
|
|
COPY --chown=$user:$user packages/fork-uslug ./packages/fork-uslug
|
2021-11-23 18:09:09 +02:00
|
|
|
COPY --chown=$user:$user packages/htmlpack ./packages/htmlpack
|
2020-12-28 13:48:47 +02:00
|
|
|
COPY --chown=$user:$user packages/renderer ./packages/renderer
|
|
|
|
COPY --chown=$user:$user packages/tools ./packages/tools
|
2021-01-18 12:13:26 +02:00
|
|
|
COPY --chown=$user:$user packages/lib ./packages/lib
|
2021-10-23 22:57:45 +02:00
|
|
|
COPY --chown=$user:$user packages/server ./packages/server
|
2020-12-28 13:48:47 +02:00
|
|
|
|
2022-01-13 19:39:58 +02:00
|
|
|
# For some reason there's both a .yarn/cache and .yarn/berry/cache that are
|
|
|
|
# being generated, and both have the same content. Not clear why it does this
|
|
|
|
# but we can delete it anyway. We can delete the cache because we use
|
|
|
|
# `nodeLinker: node-modules`. If we ever implement Zero Install, we'll need to
|
|
|
|
# keep the cache.
|
|
|
|
#
|
|
|
|
# Note that `yarn install` ignores `NODE_ENV=production` and will install dev
|
|
|
|
# dependencies too, but this is fine because we need them to build the app.
|
2020-12-28 13:48:47 +02:00
|
|
|
|
2022-01-13 19:39:58 +02:00
|
|
|
RUN BUILD_SEQUENCIAL=1 yarn install --inline-builds \
|
|
|
|
&& yarn cache clean \
|
|
|
|
&& rm -rf .yarn/berry
|
2020-12-28 13:48:47 +02:00
|
|
|
|
2022-01-09 17:36:21 +02:00
|
|
|
# Call the command directly, without going via npm:
|
|
|
|
# https://github.com/nodejs/docker-node/blob/main/docs/BestPractices.md#cmd
|
|
|
|
WORKDIR "/home/$user/packages/server"
|
|
|
|
CMD [ "node", "dist/app.js" ]
|
2021-07-08 15:04:03 +02:00
|
|
|
|
|
|
|
# Build-time metadata
|
|
|
|
# https://github.com/opencontainers/image-spec/blob/master/annotations.md
|
|
|
|
ARG BUILD_DATE
|
|
|
|
ARG REVISION
|
|
|
|
ARG VERSION
|
|
|
|
LABEL org.opencontainers.image.created="$BUILD_DATE" \
|
|
|
|
org.opencontainers.image.title="Joplin Server" \
|
|
|
|
org.opencontainers.image.description="Docker image for Joplin Server" \
|
|
|
|
org.opencontainers.image.url="https://joplinapp.org/" \
|
|
|
|
org.opencontainers.image.revision="$REVISION" \
|
|
|
|
org.opencontainers.image.source="https://github.com/laurent22/joplin.git" \
|
|
|
|
org.opencontainers.image.version="${VERSION}"
|