1
0
mirror of https://github.com/docker/cli.git synced 2026-01-18 08:21:31 +03:00

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>
Upstream-commit: 9d1d9f2fa3
Component: cli
This commit is contained in:
Eli Uriegas
2017-10-20 14:12:54 -07:00
parent 869831ccd7
commit 9797d6fc52
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