diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 34ac1f4..1f06e4e 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,4 +1,4 @@ -FROM node:25-alpine AS build-stage +FROM node:26-alpine AS build-stage # set working directory WORKDIR /app @@ -17,7 +17,7 @@ RUN rm public/environment/env.js RUN npm run build -FROM node:25-alpine AS production-stage +FROM node:26-alpine AS production-stage WORKDIR /app COPY --from=build-stage /app/build /app/build RUN npm install -g serve