You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
203 B
9 lines
203 B
9 years ago
|
# use "make dockerimage" to build
|
||
9 years ago
|
FROM alpine:3.3
|
||
9 years ago
|
RUN apk add --no-cache ca-certificates bash
|
||
9 years ago
|
ADD minio.dockerimage /minio
|
||
|
ADD export /export
|
||
9 years ago
|
EXPOSE 9000
|
||
9 years ago
|
COPY start.sh /start.sh
|
||
|
ENTRYPOINT ["/start.sh"]
|