2022-11-02 11:24:45 -04:00
|
|
|
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: CC-BY-SA-4.0
|
|
|
|
|
2022-12-11 18:46:30 -05:00
|
|
|
# BASE
|
2023-06-21 20:39:14 -04:00
|
|
|
FROM docker.io/node:20-alpine@sha256:77516e190b36147a51d2d1b85b52f57592fe956b1dbeea57a3d618a0affd5104 AS base
|
2022-12-11 18:46:30 -05:00
|
|
|
RUN apk add --no-cache tini
|
|
|
|
ENTRYPOINT ["tini", "--"]
|
|
|
|
|
2022-11-02 11:24:45 -04:00
|
|
|
# BUILD
|
2022-12-11 18:46:30 -05:00
|
|
|
FROM base AS builder
|
|
|
|
|
|
|
|
RUN apk add --no-cache libc6-compat
|
2022-11-02 11:24:45 -04:00
|
|
|
ENV NODE_ENV=production
|
|
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
|
2023-03-02 15:18:13 -05:00
|
|
|
ENV YARN_CACHE_FOLDER=/tmp/.yarn
|
2022-11-02 11:24:45 -04:00
|
|
|
USER node
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
2022-12-11 18:46:30 -05:00
|
|
|
COPY --chown=node . .
|
2022-11-02 11:24:45 -04:00
|
|
|
RUN --mount=type=cache,sharing=locked,uid=1000,gid=1000,target=/tmp/.yarn \
|
2023-02-07 16:03:24 -05:00
|
|
|
yarn install --immutable
|
2022-12-04 16:42:39 -05:00
|
|
|
|
2022-12-11 18:46:30 -05:00
|
|
|
ARG TURBO_TEAM
|
|
|
|
ARG TURBO_API
|
|
|
|
ARG TURBO_TOKEN
|
2022-11-02 11:24:45 -04:00
|
|
|
|
2022-12-11 18:46:30 -05:00
|
|
|
RUN rm -rf frontend/public/public
|
|
|
|
RUN rm -rf frontend/src/pages/api
|
|
|
|
RUN yarn turbo run build --filter=frontend --no-cache --no-daemon
|
2022-11-02 11:24:45 -04:00
|
|
|
|
|
|
|
# RUNNER
|
2022-12-11 18:46:30 -05:00
|
|
|
FROM base
|
2022-11-02 11:24:45 -04:00
|
|
|
ENV NODE_ENV=production
|
|
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
|
2023-02-21 06:54:07 -05:00
|
|
|
LABEL org.opencontainers.image.title='HedgeDoc production frontend image'
|
|
|
|
LABEL org.opencontainers.image.url='https://hedgedoc.org'
|
|
|
|
LABEL org.opencontainers.image.source='https://github.com/hedgedoc/hedgedoc'
|
|
|
|
LABEL org.opencontainers.image.documentation='https://github.com/hedgedoc/hedgedoc/blob/develop/docs/content/dev/docker.md'
|
|
|
|
LABEL org.opencontainers.image.licenses='AGPL-3.0'
|
|
|
|
|
2022-11-02 11:24:45 -04:00
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
|
|
|
COPY --from=builder --chown=node:node /usr/src/app/frontend/.next/standalone ./
|
2023-02-04 08:44:57 -05:00
|
|
|
COPY --from=builder --chown=node:node /usr/src/app/frontend/.next/static ./frontend/.next/static
|
|
|
|
COPY --from=builder /usr/src/app/frontend/next.config.js ./frontend/next.config.js
|
|
|
|
COPY --from=builder /usr/src/app/frontend/public ./frontend/public
|
2022-11-02 11:24:45 -04:00
|
|
|
|
|
|
|
USER node
|
|
|
|
|
|
|
|
ENV PORT 3001
|
|
|
|
EXPOSE 3001/tcp
|
2023-02-04 08:44:57 -05:00
|
|
|
|
|
|
|
WORKDIR /usr/src/app/frontend
|
|
|
|
CMD ["node", "server.js"]
|