Move Dockerfile to go 1.9.1 (#5047)

Additionally add Dockerfile.dev to build local development images.
This commit is contained in:
Harshavardhana
2017-10-10 14:17:16 -07:00
committed by Dee Koder
parent 02a5f1e96a
commit e2bff5cdc0
2 changed files with 34 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
FROM alpine:3.6
FROM golang:1.9.1-alpine3.6
MAINTAINER Minio Inc <dev@minio.io>
@@ -12,7 +12,7 @@ COPY dockerscripts/docker-entrypoint.sh dockerscripts/healthcheck.sh /usr/bin/
RUN \
apk add --no-cache ca-certificates curl && \
apk add --no-cache --virtual .build-deps git go musl-dev && \
apk add --no-cache --virtual .build-deps git && \
echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf && \
go get -v -d github.com/minio/minio && \
cd /go/src/github.com/minio/minio && \