From 929968b99b6f651ebe8f8b0d799040ca1c98359a Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Wed, 19 Mar 2025 11:03:54 +0100 Subject: [PATCH] fix(docker): update nginx base image to version 1.27.4 Update the Dockerfile to use the amd64/nginx:1.27.4 image for better compatibility and security. This change ensures that the application runs on a stable and supported version of nginx, improving the overall image reliability. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1343acc..82465b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ COPY ./ ./ RUN npm run generate && npm run lint #RUN yarn start:ci & yarn wait && yarn test:cypress -FROM nginx@sha256:124b44bfc9ccd1f3cedf4b592d4d1e8bddb78b51ec2ed5056c52d3692baebc19 +FROM amd64/nginx:1.27.4@sha256:02d5f75a2d4a3f31957bc666b5e2cecafcb749732484b221b62cb825ccbf737b MAINTAINER Joakim Olsson COPY --from=builder /build/.output/public/ /usr/share/nginx/html/