From 92d2c16607057c33a6542f2626ddb1f30a959c3c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 10:01:46 +0000 Subject: [PATCH] chore(deps): update nginx:stable-alpine docker digest to d3c8d5d --- frontend-project/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend-project/Dockerfile b/frontend-project/Dockerfile index c6c28db99..34a989dbf 100644 --- a/frontend-project/Dockerfile +++ b/frontend-project/Dockerfile @@ -8,7 +8,7 @@ FROM env AS builder COPY ./ /code RUN yarn && yarn build -FROM nginx:stable-alpine@sha256:ff557e536e5c697c5a28db13ab81bdf9b0c6a20161aa0a46419b9b251872c7df AS prod +FROM nginx:stable-alpine@sha256:d3c8d5d7ffab8c5ad2d88ec5df4f558f6d670becbcc9c5a7ffe4b93e30fdd318 AS prod COPY ./nginx.conf /etc/nginx/conf.d/default.conf COPY --from=builder /code/dist /usr/share/nginx/html EXPOSE 8000