From 10d2c985f59a6a369e98fe261389b4d1f7b1a255 Mon Sep 17 00:00:00 2001 From: Tracy Truong Date: Mon, 18 Dec 2023 13:12:51 -0500 Subject: [PATCH] updated Dockerfile with updated nginx version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 66ba0b88..91d394ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN NODE_OPTIONS="--max-old-space-size=4096" npm install --legacy-peer-deps RUN NODE_OPTIONS="--max-old-space-size=4096" npm run build -FROM nginx:1.25.2-alpine3.18-slim as prod +FROM nginx:1.25.3-alpine3.18-slim as prod COPY --from=build /usr/src/app/build /usr/share/nginx/html COPY --from=build /usr/src/app/conf/inject.template.js /usr/share/nginx/html/inject.template.js