-
Notifications
You must be signed in to change notification settings - Fork 416
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update to latest Golang Docker image
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]> | ||
|
||
COPY --from=binary /go/bin/dockerize /usr/local/bin | ||
|