From 6f3b66617f27c534c1d83ed356bc2abacb60bd1e Mon Sep 17 00:00:00 2001 From: Kelly Hair Date: Wed, 15 Apr 2020 10:52:12 -0400 Subject: [PATCH] Uncommenting lines in Dockerfile Build away --- Dockerfile | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5e5922a..417d312 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,10 +9,10 @@ ENV GOPATH /go ENV CGO_ENABLED 0 ENV GO111MODULE on -# RUN \ -# apk add --no-cache git && \ -# git clone https://github.com/minio/minio && cd minio && \ -# go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" +RUN \ + apk add --no-cache git && \ + git clone https://github.com/minio/minio && cd minio && \ + go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" FROM alpine:3.10 @@ -24,16 +24,16 @@ ENV MINIO_ACCESS_KEY_FILE=access_key \ EXPOSE 9000 -# COPY --from=0 /go/bin/minio /usr/bin/minio -# COPY --from=0 /go/minio/CREDITS /third_party/ -# COPY --from=0 /go/minio/dockerscripts/docker-entrypoint.sh /usr/bin/ +COPY --from=0 /go/bin/minio /usr/bin/minio +COPY --from=0 /go/minio/CREDITS /third_party/ +COPY --from=0 /go/minio/dockerscripts/docker-entrypoint.sh /usr/bin/ -# RUN \ -# apk add --no-cache ca-certificates 'curl>7.61.0' 'su-exec>=0.2' && \ -# echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf +RUN \ + apk add --no-cache ca-certificates 'curl>7.61.0' 'su-exec>=0.2' && \ + echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf -# ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"] +ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"] -# VOLUME ["/data"] +VOLUME ["/data"] -# CMD ["minio"] \ No newline at end of file +CMD ["minio"] \ No newline at end of file