mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
bced0c478b
As frontend and backend are managed inside a monorepo and distributed together, there is no sense in keeping separate frontend and backend version information. Signed-off-by: Erik Michelson <github@erik.michelson.eu>
57 lines
1.7 KiB
Docker
57 lines
1.7 KiB
Docker
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
#
|
|
# SPDX-License-Identifier: CC-BY-SA-4.0
|
|
|
|
# BASE
|
|
FROM docker.io/node:18-alpine@sha256:47d97b93629d9461d64197773966cc49081cf4463b1b07de5a38b6bd5acfbe9d AS base
|
|
RUN apk add --no-cache tini
|
|
ENTRYPOINT ["tini", "--"]
|
|
|
|
# BUILD
|
|
FROM base AS builder
|
|
|
|
RUN apk add --no-cache libc6-compat
|
|
ENV NODE_ENV=production
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
ENV YARN_CACHE_FOLDER=/tmp/.yarn
|
|
USER node
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY --chown=node . .
|
|
RUN --mount=type=cache,sharing=locked,uid=1000,gid=1000,target=/tmp/.yarn \
|
|
yarn install --immutable
|
|
|
|
ARG TURBO_TEAM
|
|
ARG TURBO_API
|
|
ARG TURBO_TOKEN
|
|
|
|
RUN rm -rf frontend/public/public
|
|
RUN rm -rf frontend/src/pages/api
|
|
RUN yarn turbo run build --filter=frontend --no-cache --no-daemon
|
|
|
|
# RUNNER
|
|
FROM base
|
|
ENV NODE_ENV=production
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
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'
|
|
|
|
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 ./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
|
|
|
|
USER node
|
|
|
|
ENV PORT 3001
|
|
EXPOSE 3001/tcp
|
|
|
|
WORKDIR /usr/src/app/frontend
|
|
CMD ["node", "server.js"]
|