mirror of
https://github.com/buckit-io/buckit.git
synced 2026-09-22 10:33:42 +00:00
13 lines
232 B
Docker
13 lines
232 B
Docker
FROM minio/minio:latest
|
|
|
|
RUN chmod -R 777 /usr/bin
|
|
|
|
COPY ./buckit /usr/bin/buckit
|
|
COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
|
|
|
|
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
|
|
|
|
VOLUME ["/data"]
|
|
|
|
CMD ["buckit"]
|