diff --git a/frontend/Dockerfile.dev b/frontend/Dockerfile.dev index 1947df5..17f47f2 100644 --- a/frontend/Dockerfile.dev +++ b/frontend/Dockerfile.dev @@ -17,7 +17,7 @@ RUN npm install -g @angular/cli RUN ng build --configuration=development # SECOND STAGE: Serve the application using Nginx -FROM nginx:1.29.5-alpine +FROM nginx:1.29.7-alpine # Copy the built application from the previous stage COPY --from=build /app/dist/pdataviewer/browser /usr/share/nginx/html diff --git a/frontend/Dockerfile.prod b/frontend/Dockerfile.prod index c90cea5..96fc1b7 100644 --- a/frontend/Dockerfile.prod +++ b/frontend/Dockerfile.prod @@ -17,7 +17,7 @@ RUN npm install -g @angular/cli RUN ng build --configuration=production # SECOND STAGE: Serve the application using Nginx -FROM nginx:1.29.5-alpine +FROM nginx:1.29.7-alpine # Copy the built application from the previous stage COPY --from=build /app/dist/pdataviewer/browser /usr/share/nginx/html