mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
49 lines
1.6 KiB
Text
49 lines
1.6 KiB
Text
|
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||
|
#
|
||
|
# SPDX-License-Identifier: CC-BY-SA-4.0
|
||
|
|
||
|
# BUILD
|
||
|
FROM docker.io/node:18-alpine@sha256:9eff44230b2fdcca57a73b8f908c8029e72d24dd05cac5339c79d3dedf6b208b AS builder
|
||
|
ENV NODE_ENV=production
|
||
|
ENV NEXT_TELEMETRY_DISABLED=1
|
||
|
ARG BUILD_VERSION=CLIENT_VERSION_MISSING
|
||
|
|
||
|
ENV YARN_CACHE_FOLDER /tmp/.yarn
|
||
|
USER node
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
COPY --chown=node .yarn/plugins .yarn/plugins
|
||
|
COPY --chown=node .yarn/releases .yarn/releases
|
||
|
COPY --chown=node .yarnrc.yml .yarnrc.yml
|
||
|
COPY --chown=node package.json package.json
|
||
|
COPY --chown=node yarn.lock yarn.lock
|
||
|
COPY --chown=node backend/package.json backend/
|
||
|
COPY --chown=node frontend frontend
|
||
|
RUN --mount=type=cache,sharing=locked,uid=1000,gid=1000,target=/tmp/.yarn \
|
||
|
yarn install --immutable && yarn workspaces focus @hedgedoc/frontend
|
||
|
|
||
|
WORKDIR /usr/src/app/frontend
|
||
|
|
||
|
RUN rm -rf public/public && \
|
||
|
rm -rf src/pages/api && \
|
||
|
sed -i "s/CLIENT_VERSION_MISSING/${BUILD_VERSION}/" src/version.json
|
||
|
RUN yarn build
|
||
|
|
||
|
# RUNNER
|
||
|
FROM docker.io/node:18-alpine@sha256:9eff44230b2fdcca57a73b8f908c8029e72d24dd05cac5339c79d3dedf6b208b
|
||
|
ENV NODE_ENV=production
|
||
|
ENV NEXT_TELEMETRY_DISABLED=1
|
||
|
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
COPY --from=builder --chown=node:node /usr/src/app/frontend/.next/standalone ./
|
||
|
COPY --from=builder --chown=node:node /usr/src/app/frontend/.next/static ./.next/static
|
||
|
COPY --from=builder /usr/src/app/frontend/next.config.js next.config.js
|
||
|
COPY --from=builder /usr/src/app/frontend/public ./public
|
||
|
|
||
|
USER node
|
||
|
|
||
|
ENV PORT 3001
|
||
|
EXPOSE 3001/tcp
|
||
|
CMD ["node", "frontend/server.js"]
|