Hopefully fix missing entrypoint script

This commit is contained in:
0xd6cb6d73 2025-12-31 22:54:16 +01:00
parent 2a67c44655
commit 9371fbfe3c
No known key found for this signature in database
GPG key ID: C741FEB41EB85858

View file

@ -18,8 +18,8 @@ FROM gcr.io/distroless/static-debian12
ARG TARGETARCH
ARG RELEASE
COPY --from=build --chown=1000:1000 /build/minio /usr/bin/minio
COPY --from=build --chown=1000:1000 /build/dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
COPY --from=build --chown=1000:1000 --chmod=+x /build/minio /usr/bin/minio
COPY --chown=1000:1000 --chmod=+x dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]