From 6ea9a9445631cf8f3f60529aff6b1f56638128f0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Mar 2026 11:55:12 +0000 Subject: [PATCH] chore(deps): bump nginx from 1.29.5-alpine to 1.29.6-alpine in /frontend Bumps nginx from 1.29.5-alpine to 1.29.6-alpine. --- updated-dependencies: - dependency-name: nginx dependency-version: 1.29.6-alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- frontend/Dockerfile.dev | 2 +- frontend/Dockerfile.prod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/Dockerfile.dev b/frontend/Dockerfile.dev index 1947df5..91c435d 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.6-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..eafd129 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.6-alpine # Copy the built application from the previous stage COPY --from=build /app/dist/pdataviewer/browser /usr/share/nginx/html