mirror of
https://github.com/minio/minio.git
synced 2024-12-26 15:15:55 -05:00
342f8fbe5d
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
9 lines
197 B
Docker
9 lines
197 B
Docker
# use "make dockerimage" to build
|
|
FROM alpine:3.3
|
|
RUN apk add --no-cache ca-certificates
|
|
ADD minio.dockerimage /minio
|
|
ADD export /export
|
|
EXPOSE 9000
|
|
ENTRYPOINT ["/minio"]
|
|
CMD ["server", "/export"]
|