We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
mc
web
1 parent d506a33 commit 729e542Copy full SHA for 729e542
dockerfiles/Dockerfile
@@ -30,6 +30,13 @@ RUN apt-get -y install \
30
telnet \
31
lsb-release
32
33
+# Gets the MinIO mc client used to add buckets upon initialization
34
+# If this client should have issues running inside this image, it is also
35
+# fine to defer it to a separate image.
36
+# The current minio/mc Docker image could be a lot smaller
37
+RUN curl -s -q https://dl.min.io/client/mc/release/linux-amd64/archive/mc.RELEASE.2022-06-11T21-10-36Z -o /usr/bin/mc && \
38
+ chmod +x /usr/bin/mc
39
+
40
# Uncomment en_US.UTF-8 locale and generate it
41
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
42
locale-gen
0 commit comments