Dockerfile auf 23 build

This commit is contained in:
titver968
2025-04-23 13:16:05 +02:00
parent 151d075079
commit fd4f3b38d1

View File

@@ -1,5 +1,5 @@
# --- Build stage ---
FROM node:22 AS build
FROM node:23 AS build
ENV NODE_ENV=production
ENV ORIGIN=https://praktikum.innovation-hub-niedersachsen.de
WORKDIR /app
@@ -11,7 +11,7 @@ RUN npx prisma db seed
RUN npm run build
# --- Production stage ---
FROM node:22-alpine3.20
FROM node:23.11-alpine3.20
COPY --from=build /app .
ENV HOST=0.0.0.0
EXPOSE 3000