From cb0b59be446ef02cc51a396cc4a17d54882f164f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tarmo=20Lepp=C3=A4nen?= Date: Thu, 18 Dec 2025 17:10:40 +0200 Subject: [PATCH] Chore(env): Pin Nginx version to 1.29.4-alpine-slim --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index eccbc750..afa27a60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -105,11 +105,7 @@ COPY . . RUN yarn build-prod # Stage 4: Production -FROM nginx:mainline-alpine-slim AS production - -RUN apk update \ - && apk add --no-cache pcre2=10.46-r0 \ - && rm -rf /var/cache/apk/* +FROM nginx:1.29.4-alpine-slim AS production # Copy nginx configuration and build application inside the final container COPY --from=builder /app/docker/nginx.conf /etc/nginx/conf.d/default.conf