Update hotfix documentation and container building

This commit is contained in:
Harshavardhana
2021-12-02 17:33:37 -08:00
parent b14527b7af
commit 20c60aae68
5 changed files with 72 additions and 30 deletions
-22
View File
@@ -1,22 +0,0 @@
FROM minio/minio
LABEL maintainer="MinIO Inc <dev@min.io>"
ENV PATH=/opt/bin:$PATH
RUN mkdir -p /opt/bin && chmod -R 777 /opt/bin
COPY minio /opt/bin
COPY dockerscripts/docker-entrypoint.sh /usr/bin/
RUN chmod +x /opt/bin/minio && \
chmod +x /usr/bin/docker-entrypoint.sh
EXPOSE 9000
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
VOLUME ["/data"]
CMD ["minio"]