From 3ab8bed96a1f376264ab0cb5d640c5f362722359 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 25 Jun 2025 03:40:17 +0000 Subject: [PATCH] chore(deps): update nginx docker tag to v1.29 --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index fb5fc02..7daa8a2 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -10,7 +10,7 @@ ARG API_BASE_URL ENV API_BASE_URL=${API_BASE_URL} RUN npm run build -FROM nginx:1.28-alpine +FROM nginx:1.29-alpine WORKDIR /usr/share/nginx/html COPY --from=build /app/dist/ ./ EXPOSE 80