From 37a02670f5d19c4fd240f27fc16a3aa0577aa1a5 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Fri, 2 Oct 2015 13:38:51 -0600 Subject: [PATCH] Use ubuntu-debootstrap and Go 1.5.1. Currently, the Dockerfile is broken because it installs Go 1.5 while the minimum required version is 1.5.1. Also, switch to a minimval version of Ubuntu (ubuntu-debootstrap) and reduce the image size by 70M in unneeded dependencies. --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e21b2a56c..5bdaaaa8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,8 @@ - -FROM ubuntu:14.04 +FROM ubuntu-debootstrap:14.04 MAINTAINER Minio Community -ENV GOLANG_TARBALL go1.5.linux-amd64.tar.gz +ENV GOLANG_TARBALL go1.5.1.linux-amd64.tar.gz ENV GOROOT /usr/local/go/ ENV GOPATH /go-workspace