From ca512cf1487f5e06ea906e113b15b01619b89f6d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 06:43:51 +0000 Subject: [PATCH] chore(deps): update nginx:stable-alpine docker digest to fe13ba5 --- frontend-project/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend-project/Dockerfile b/frontend-project/Dockerfile index c6c28db99..dd4d0728d 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:fe13ba5fdf39acdd568b965dd8742889820920d249d0bd21c4f0801cc104024f AS prod COPY ./nginx.conf /etc/nginx/conf.d/default.conf COPY --from=builder /code/dist /usr/share/nginx/html EXPOSE 8000