mirror of
https://github.com/buckit-io/buckit.git
synced 2026-09-19 00:55:09 +00:00
19 lines
432 B
Docker
19 lines
432 B
Docker
FROM minio/minio:latest
|
|
|
|
ARG TARGETARCH
|
|
ARG RELEASE
|
|
|
|
RUN chmod -R 777 /usr/bin
|
|
|
|
COPY ./buckit-${TARGETARCH}.${RELEASE} /usr/bin/buckit
|
|
COPY ./buckit-${TARGETARCH}.${RELEASE}.minisig /usr/bin/buckit.minisig
|
|
COPY ./buckit-${TARGETARCH}.${RELEASE}.sha256sum /usr/bin/buckit.sha256sum
|
|
|
|
COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
|
|
|
|
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
|
|
|
|
VOLUME ["/data"]
|
|
|
|
CMD ["buckit"]
|