mirror of
https://gitlab.com/alemaire/buildx.git
synced 2025-01-17 13:58:19 +00:00
initial commit
This commit is contained in:
9
mc/Dockerfile
Normal file
9
mc/Dockerfile
Normal file
@ -0,0 +1,9 @@
|
||||
FROM debian:stable-20200720-slim
|
||||
ARG TARGETARCH
|
||||
ARG MC_VERSION
|
||||
ADD https://dl.min.io/client/mc/release/linux-${TARGETARCH}/archive/mc.${MC_VERSION} /root/
|
||||
RUN mv /root/mc.${MC_VERSION} /usr/bin/mc && chmod +x /usr/bin/mc
|
||||
|
||||
FROM scratch
|
||||
COPY --from=0 /usr/bin/mc /mc
|
||||
ENTRYPOINT ["/mc"]
|
Reference in New Issue
Block a user