From 69315a436103c89bf4b020e129fadf1e7d039cf6 Mon Sep 17 00:00:00 2001 From: Jason McVetta Date: Wed, 12 Feb 2020 13:31:35 +0700 Subject: [PATCH] update to latest Golang Docker image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 097e54c..554acfe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.8.3-alpine3.6 AS binary +FROM golang:1.13.7-alpine3.11 AS binary RUN apk -U add openssl git ADD . /go/src/github.com/jwilder/dockerize @@ -8,7 +8,7 @@ RUN go get github.com/robfig/glock RUN glock sync -n < GLOCKFILE RUN go install -FROM alpine:3.6 +FROM alpine:3.11 MAINTAINER Jason Wilder COPY --from=binary /go/bin/dockerize /usr/local/bin