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