From 750dc335a983fcd2c1410bffe5e23d1b0b3c3e3c Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Wed, 26 Nov 2014 10:46:00 -0800 Subject: [PATCH] Windows should not be officially released. Docker-DCO-1.1-Signed-off-by: Jessica Frazelle (github: jfrazelle) --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 344551d35d..af559759b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,8 +68,10 @@ RUN cd /usr/local/go/src && ./make.bash --no-clean 2>&1 ENV DOCKER_CROSSPLATFORMS \ linux/386 linux/arm \ darwin/amd64 darwin/386 \ - freebsd/amd64 freebsd/386 freebsd/arm \ - windows/amd64 windows/386 + freebsd/amd64 freebsd/386 freebsd/arm +# windows is experimental for now +# windows/amd64 windows/386 + # (set an explicit GOARM of 5 for maximum compatibility) ENV GOARM 5 RUN cd /usr/local/go/src && bash -xc 'for platform in $DOCKER_CROSSPLATFORMS; do GOOS=${platform%/*} GOARCH=${platform##*/} ./make.bash --no-clean 2>&1; done'