From cd82da1b8a517de49915eb68e8727a00b26e71b6 Mon Sep 17 00:00:00 2001 From: Akshat Jain Date: Wed, 29 Jul 2026 19:40:07 +0530 Subject: [PATCH] [INFRA-461] chore: bump nginx to 1.31-alpine in web and admin Dockerfiles (#9490) Co-authored-by: Claude Sonnet 4.6 --- apps/admin/Dockerfile.admin | 2 +- apps/web/Dockerfile.web | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/admin/Dockerfile.admin b/apps/admin/Dockerfile.admin index b7d8bdd0e2..c488d5ca42 100644 --- a/apps/admin/Dockerfile.admin +++ b/apps/admin/Dockerfile.admin @@ -75,7 +75,7 @@ RUN pnpm turbo run build --filter=admin # =========================================================================== # -FROM nginx:1.29-alpine AS production +FROM nginx:1.31-alpine AS production RUN apk update && apk upgrade --no-cache && rm -rf /var/cache/apk/* diff --git a/apps/web/Dockerfile.web b/apps/web/Dockerfile.web index fa5545de1c..d9c76f8f8f 100644 --- a/apps/web/Dockerfile.web +++ b/apps/web/Dockerfile.web @@ -75,7 +75,7 @@ RUN pnpm turbo run build --filter=web # ***************************************************************************** # STAGE 3: Serve with nginx # ***************************************************************************** -FROM nginx:1.29-alpine AS production +FROM nginx:1.31-alpine AS production RUN apk update && apk upgrade --no-cache && rm -rf /var/cache/apk/*