From d45a8a36634938aae3d07d3e870014d98f4e76d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 21:30:54 +0000 Subject: [PATCH] Bump alpine from 3.18 to 3.19 in /container Bumps alpine from 3.18 to 3.19. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- container/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/container/Dockerfile b/container/Dockerfile index 71377d2..92a6070 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -5,7 +5,7 @@ # $ docker run --rm -i hadolint/hadolint < Dockerfile # ---------- build taganaka/SpeedTest binary ---------- -FROM alpine:3.18 as compiler +FROM alpine:3.19 as compiler # install build framework and libraries # hadolint ignore=DL3018 @@ -21,7 +21,7 @@ RUN git clone https://github.com/taganaka/SpeedTest.git . \ && make # --------- build application container ---------- -FROM alpine:3.18 as runtime +FROM alpine:3.19 as runtime # install necessary packages and fonts # hadolint ignore=DL3018