Update frontend Dockerfile

This commit is contained in:
dvirlabs 2025-12-05 11:35:11 +02:00
parent 99538b4b40
commit 7eeaf2fad9

View File

@ -1,5 +1,5 @@
# Build stage # Build stage
FROM node:22-alpine AS builder # ⬅⬅ changed from 18 to 22 FROM node:22-alpine AS builder
WORKDIR /app WORKDIR /app
@ -16,7 +16,7 @@ COPY . .
RUN npm run build RUN npm run build
# Production stage # Production stage
FROM node:22-alpine # ⬅⬅ also here FROM node:22-alpine
WORKDIR /app WORKDIR /app