From 042b3601682a9ebfab509fe3fb7b9a0f67ac736a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Aug 2021 06:00:38 +0000 Subject: [PATCH] Changelog:All: Bump alpine from 3.14.0 to 3.14.1 Bumps alpine from 3.14.0 to 3.14.1. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- Dockerfile.acceptance-testing | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c4cf6c859..e985eada9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /go/src/github.com/mendersoftware/deviceauth ADD ./ . RUN CGO_ENABLED=0 GOARCH=amd64 go build -o deviceauth . -FROM alpine:3.14.0 +FROM alpine:3.14.1 EXPOSE 8080 # mount your private key at /etc/deviceauth/rsa/private.pem RUN mkdir -p /etc/deviceauth/rsa diff --git a/Dockerfile.acceptance-testing b/Dockerfile.acceptance-testing index 6241c2703..62d68cf2a 100644 --- a/Dockerfile.acceptance-testing +++ b/Dockerfile.acceptance-testing @@ -4,7 +4,7 @@ COPY . /go/src/github.com/mendersoftware/deviceauth RUN cd /go/src/github.com/mendersoftware/deviceauth && \ env CGO_ENABLED=0 go test -c -o deviceauth-test -coverpkg $(go list ./... | grep -v vendor | grep -v mock | grep -v test | tr '\n' ,) -FROM alpine:3.14.0 +FROM alpine:3.14.1 EXPOSE 8080