Update frontend Dockerfile

This commit is contained in:
dvirlabs 2025-12-05 11:33:40 +02:00
parent c43c33db37
commit 99538b4b40

View File

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