Kubernetes/Docker/Dockerfile/Drone-Images/Dockerfile-minio

10 lines
187 B
Plaintext
Raw Permalink Normal View History

2024-08-07 10:54:39 +00:00
FROM alpine:latest
LABEL maintainer="Offends <offends4@163.com>"
COPY ./mc.sh .
RUN apk add --no-cache --virtual .build-deps \
curl \
&& sh ./mc.sh \
&& apk del .build-deps