From af06319ca91f8311ff24799ee96d5aa9b3e5d7b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Aug 2024 00:02:30 +0000 Subject: [PATCH] Bump the all-docker group across 3 directories with 3 updates Bumps the all-docker group with 1 update in the / directory: node. Bumps the all-docker group with 1 update in the /server directory: ubuntu. Bumps the all-docker group with 2 updates in the /ui directory: ubuntu and nginx. Updates `node` from 20 to 22 Updates `ubuntu` from 20.04 to 24.04 Updates `ubuntu` from 20.04 to 24.04 Updates `nginx` from 1.17 to 1.27 --- updated-dependencies: - dependency-name: node dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-docker - dependency-name: ubuntu dependency-type: direct:production dependency-group: all-docker - 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 | 2 +- server/Dockerfile | 2 +- ui/Dockerfile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index f706f51..e541039 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20 as build +FROM node:22 as build # Check the versions RUN node --version && \ diff --git a/server/Dockerfile b/server/Dockerfile index e4fc0a3..c3e4d25 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 as build +FROM ubuntu:24.04 as build MAINTAINER SDF Ops Team diff --git a/ui/Dockerfile b/ui/Dockerfile index e26ab2a..87bd909 100644 --- a/ui/Dockerfile +++ b/ui/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 as build +FROM ubuntu:24.04 as build MAINTAINER SDF Ops Team @@ -28,7 +28,7 @@ COPY ./ui /app/ui/ RUN yarn install RUN yarn workspace ui build -FROM nginx:1.17 +FROM nginx:1.27 COPY --from=build /app/ui/build/ /usr/share/nginx/html/ COPY --from=build /app/ui/nginx.conf /etc/nginx/conf.d/default.conf