Skip to content

Instantly share code, notes, and snippets.

@kiranparajuli589
Created August 17, 2022 15:41
Show Gist options
  • Save kiranparajuli589/df9839d0e6f554954c6651ee58da504b to your computer and use it in GitHub Desktop.
Save kiranparajuli589/df9839d0e6f554954c6651ee58da504b to your computer and use it in GitHub Desktop.
Minio MC Client with Ubuntu
FROM ubuntu:22.04
RUN apt-get update
RUN apt-get install -y wget
RUN wget https://dl.min.io/client/mc/release/linux-amd64/mc
RUN chmod +x mc
RUN mv mc /usr/local/bin/
ENTRYPOINT [ "mc" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment