forked from minio/minio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
26c4578
commit 3b5d6f0
Showing
3 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
FROM minio/minio:edge | ||
FROM minio/minio | ||
|
||
LABEL maintainer="MinIO Inc <[email protected]>" | ||
|
||
COPY minio /usr/bin/ | ||
ENV PATH=/opt/bin:$PATH | ||
|
||
COPY minio /opt/bin | ||
COPY dockerscripts/docker-entrypoint.sh /usr/bin/ | ||
|
||
RUN chmod +x /usr/bin/minio && \ | ||
RUN mkdir -p /opt/bin && chmod -R 777 /opt/bin && \ | ||
chmod +x /opt/bin/minio && \ | ||
chmod +x /usr/bin/docker-entrypoint.sh | ||
|
||
EXPOSE 9000 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters