From a03bec8adf24e4a113f3a5b8672c8b64df52e7b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 May 2023 10:00:39 +0000 Subject: [PATCH] Bump alpine from 3.17.3 to 3.18.0 Bumps alpine from 3.17.3 to 3.18.0. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- Dockerfile-netclient-multiarch-userspace | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8deb7ab1..0336255b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY . . RUN go mod tidy RUN GOOS=linux CGO_ENABLED=0 /usr/local/go/bin/go build -ldflags="-s -w" -o netclient-app . -FROM alpine:3.17.3 +FROM alpine:3.18.0 WORKDIR /root/ diff --git a/Dockerfile-netclient-multiarch-userspace b/Dockerfile-netclient-multiarch-userspace index 703a6b4d..5d14d833 100644 --- a/Dockerfile-netclient-multiarch-userspace +++ b/Dockerfile-netclient-multiarch-userspace @@ -3,7 +3,7 @@ WORKDIR /app COPY . . RUN GOOS=linux CGO_ENABLED=0 /usr/local/go/bin/go build -ldflags="-w -s" -o netclient-app . -FROM alpine:3.17.3 +FROM alpine:3.18.0 WORKDIR /root/