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