From 93926d9025614f990af5ad247aa8afd1e1cd6d4b Mon Sep 17 00:00:00 2001 From: Nolan Brubaker Date: Mon, 17 Sep 2018 16:48:30 -0400 Subject: [PATCH] Bump alpine image for security fix This change includes the fix at https://github.com/alpinelinux/apk-tools/commit/6484ed9849f03971eb48ee1fdc21a2f128247eb1 Signed-off-by: Nolan Brubaker --- Dockerfile-ark-restic-restore-helper.alpine | 4 ++-- Dockerfile-ark.alpine | 2 +- hack/build-image/Dockerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile-ark-restic-restore-helper.alpine b/Dockerfile-ark-restic-restore-helper.alpine index 1f0cd42d1..a7f231cf3 100644 --- a/Dockerfile-ark-restic-restore-helper.alpine +++ b/Dockerfile-ark-restic-restore-helper.alpine @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM alpine:3.7 +FROM alpine:3.8 MAINTAINER Steve Kriss @@ -20,4 +20,4 @@ ADD /bin/linux/amd64/ark-restic-restore-helper . USER nobody:nobody -ENTRYPOINT [ "/ark-restic-restore-helper" ] \ No newline at end of file +ENTRYPOINT [ "/ark-restic-restore-helper" ] diff --git a/Dockerfile-ark.alpine b/Dockerfile-ark.alpine index e5cd81049..aceeb2759 100644 --- a/Dockerfile-ark.alpine +++ b/Dockerfile-ark.alpine @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM alpine:3.7 +FROM alpine:3.8 MAINTAINER Andy Goldstein diff --git a/hack/build-image/Dockerfile b/hack/build-image/Dockerfile index 410f952f2..38ab7c1d9 100644 --- a/hack/build-image/Dockerfile +++ b/hack/build-image/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.10-alpine3.7 +FROM golang:1.10-alpine3.8 RUN apk add --update --no-cache git bash && \ mkdir -p /go/src/k8s.io && \