Update to multi-arch image for golang

golang:1.8.4-alpine does not have multi-arch images available in the
manifest. (s390x, ppc64le, etc.)

This makes it so that if you are trying to compile on different
arches you aren't forced to have to write your own Dockerfile and can
instead use the one bundled with the CLI repo.

Signed-off-by: Eli Uriegas <eli.uriegas@docker.com>
master
Eli Uriegas 2017-10-20 14:12:54 -07:00
parent 3352c0e137
commit 9d1d9f2fa3
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
FROM golang:1.8.4-alpine
FROM golang:1.8.4-alpine3.6
RUN apk add -U git make bash coreutils ca-certificates

View File

@ -1,4 +1,4 @@
FROM golang:1.8.4-alpine
FROM golang:1.8.4-alpine3.6
RUN apk add -U git