From e01f290204199536d828172f1f8570d5235f40fb Mon Sep 17 00:00:00 2001 From: akshat5302 Date: Tue, 28 Jul 2026 21:08:00 +0530 Subject: [PATCH] chore(docker): bump nginx to 1.31-alpine in web and admin Dockerfiles 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 b7d8bdd0e2e..c488d5ca420 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 fa5545de1c6..d9c76f8f8fa 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/*