From cd4662e38c6babadeff859fa47c83e9d24b43b90 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jul 2024 22:25:34 +0000 Subject: [PATCH] chore(deps): bump the all-docker group with 2 updates Bumps the all-docker group with 2 updates: ubuntu and nginx. Updates `ubuntu` from 22.04 to 24.04 Updates `nginx` from 1.17 to 1.27 --- updated-dependencies: - dependency-name: ubuntu dependency-type: direct:production dependency-group: all-docker - dependency-name: nginx dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-docker ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2f249bf..1a6906d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 as build +FROM ubuntu:24.04 as build LABEL maintainer="SDF Ops Team " @@ -19,7 +19,7 @@ RUN yarn git-info RUN yarn install RUN yarn build -FROM nginx:1.17 +FROM nginx:1.27 COPY --from=build /app/build/ /usr/share/nginx/html/ COPY --from=build /app/nginx.conf /etc/nginx/conf.d/default.conf