Update Dockerfile.dev
All checks were successful
InnoHub Processor/tatort/pipeline/head This commit looks good

This commit is contained in:
Daniel
2025-07-29 08:14:40 +02:00
parent cf567451bb
commit 952c3901c1

View File

@@ -1,5 +1,5 @@
# --- Build stage ---
FROM node:22 AS build
FROM node:24-alpine AS build
ENV NODE_ENV=development
ENV ORIGIN=https://tatort-dev.innovation-hub-niedersachsen.de
WORKDIR /app
@@ -11,7 +11,7 @@ RUN npm run build
RUN npm run init_db
# --- Production stage ---
FROM node:22-alpine3.20
FROM node:24-alpine
COPY --from=build /app .
ENV HOST=0.0.0.0
EXPOSE 3000