mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
39a5437804
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
30 lines
661 B
Docker
30 lines
661 B
Docker
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
#
|
|
# SPDX-License-Identifier: CC-BY-SA-4.0
|
|
|
|
# BUILD
|
|
FROM node:18-alpine AS builder
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
WORKDIR /app
|
|
COPY . ./
|
|
RUN yarn install --immutable && \
|
|
yarn build:for-real-backend
|
|
|
|
# RUNNER
|
|
FROM node:18-alpine
|
|
ENV NODE_ENV=production
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=builder /app/next.config.js ./
|
|
COPY --from=builder /app/public ./public
|
|
COPY --from=builder --chown=node:node /app/.next/static ./.next/static
|
|
COPY --from=builder --chown=node:node /app/.next/standalone ./
|
|
|
|
USER node
|
|
|
|
ENV PORT 3000
|
|
EXPOSE 3000/tcp
|
|
CMD ["node", "server.js"]
|