diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 8d1cbbd..8c14520 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -6,7 +6,7 @@ RUN npm install COPY frontend/ ./ RUN npm run build -FROM nginx:1.27-alpine AS runtime +FROM nginx:1.31-alpine AS runtime COPY frontend/nginx.conf /etc/nginx/conf.d/default.conf COPY --from=build /app/dist /usr/share/nginx/html EXPOSE 80