From 45b2d0498d1a8beb8b41c61954270299f20d2dcf Mon Sep 17 00:00:00 2001 From: Tariq Ibrahim Date: Wed, 19 Jun 2019 22:20:58 -0700 Subject: [PATCH] use latest version of alpine when building the Docker container Signed-off-by: Tariq Ibrahim --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ec09350e1..f4602d01b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ WORKDIR $DISTRIBUTION_DIR COPY . $DISTRIBUTION_DIR RUN CGO_ENABLED=0 make PREFIX=/go clean binaries && file ./bin/registry | grep "statically linked" -FROM alpine:3.8 +FROM alpine:3.9 RUN set -ex \ && apk add --no-cache ca-certificates apache2-utils