1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-17 05:25:54 +02:00
.profile/Dockerfile

29 lines
1.2 KiB
Docker
Raw Normal View History

2024-01-23 22:01:50 +01:00
FROM node:20.11.0 AS builder-dependencies
2023-01-10 23:56:46 +01:00
WORKDIR /usr/src/application
2021-06-13 00:30:02 +02:00
COPY ./package*.json ./
2023-05-13 19:09:54 +02:00
RUN npm clean-install
2021-04-18 01:56:23 +02:00
2024-01-23 22:01:50 +01:00
FROM node:20.11.0 AS builder
2023-12-28 06:21:24 +01:00
ENV NEXT_TELEMETRY_DISABLED=1
ENV IS_STANDALONE=true
2023-01-10 23:56:46 +01:00
WORKDIR /usr/src/application
COPY --from=builder-dependencies /usr/src/application/node_modules ./node_modules
2021-06-13 00:30:02 +02:00
COPY ./ ./
RUN npm run build
2021-06-13 00:30:02 +02:00
2024-01-23 22:01:50 +01:00
FROM node:20.11.0-slim AS runner
2021-06-13 00:30:02 +02:00
ENV NODE_ENV=production
2023-08-24 22:38:09 +02:00
ENV HOSTNAME=0.0.0.0
2022-10-03 20:52:15 +02:00
ENV NEXT_TELEMETRY_DISABLED=1
2023-12-28 06:21:24 +01:00
ENV IS_STANDALONE=true
WORKDIR /usr/src/application
RUN addgroup --system --gid 1001 nodejs && adduser --system --uid 1001 applicationrunner
USER applicationrunner
COPY --from=builder-dependencies --chown=applicationrunner:nodejs /usr/src/application/node_modules ./node_modules
COPY --from=builder --chown=applicationrunner:nodejs /usr/src/application/.next/standalone ./
COPY --from=builder --chown=applicationrunner:nodejs /usr/src/application/.next/static ./.next/static
COPY --from=builder --chown=applicationrunner:nodejs /usr/src/application/public ./public
COPY --from=builder --chown=applicationrunner:nodejs /usr/src/application/i18n/translations ./i18n/translations
COPY --from=builder --chown=applicationrunner:nodejs /usr/src/application/next.config.js ./next.config.js
2023-01-10 23:56:46 +01:00
CMD ["./server.js"]