From 73c90324a5439aa471b99432b63f7ea2cff73610 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 11:16:43 +0000 Subject: [PATCH] Bump nginx from 1.27-alpine to 1.31-alpine in /frontend Bumps nginx from 1.27-alpine to 1.31-alpine. --- updated-dependencies: - dependency-name: nginx dependency-version: 1.31-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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