Alpine & CA-Certs for SSL support

Switch to alpine as a base image and install the ca certifcates to enable the minio docker container to run behind a SSL proxy, which will fix #1146
This commit is contained in:
Alexander Jung-Loddenkemper 2016-02-20 11:15:19 +01:00
parent a18620fa86
commit 342f8fbe5d

View file

@ -1,5 +1,6 @@
# use "make dockerimage" to build
FROM scratch
FROM alpine:3.3
RUN apk add --no-cache ca-certificates
ADD minio.dockerimage /minio
ADD export /export
EXPOSE 9000