diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 688777c..3c77ad5 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM node:22-alpine AS builder # ⬅⬅ changed from 18 to 22 +FROM node:22-alpine AS builder WORKDIR /app @@ -16,7 +16,7 @@ COPY . . RUN npm run build # Production stage -FROM node:22-alpine # ⬅⬅ also here +FROM node:22-alpine WORKDIR /app