This commit is contained in:
2026-06-24 15:34:09 +02:00
commit 65fb6816ca
442 changed files with 27246 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM node:24.4.1-alpine3.22
WORKDIR /app
COPY . .
RUN npm ci
RUN npx next telemetry disable
RUN npm run build
RUN adduser -D appuser && chown -R appuser /app
USER appuser
CMD npm run start