mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
fix: dockerfile.dev to create /opt/bin first (#13794)
This commit is contained in:
parent
9ec197f2e8
commit
1485a5bf3b
@ -4,11 +4,13 @@ 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 mkdir -p /opt/bin && chmod -R 777 /opt/bin && \
|
||||
chmod +x /opt/bin/minio && \
|
||||
RUN chmod +x /opt/bin/minio && \
|
||||
chmod +x /usr/bin/docker-entrypoint.sh
|
||||
|
||||
EXPOSE 9000
|
||||
|
Loading…
Reference in New Issue
Block a user