Compare commits

...

1 commit

Author SHA1 Message Date
9e6ee0ac63
change entrypoint to sh
Some checks failed
CI / test (push) Has been cancelled
CI / coverage (push) Has been cancelled
CI / shellcheck (push) Has been cancelled
CI / release (push) Has been cancelled
CI / docker (push) Has been cancelled
2025-03-01 20:20:20 +01:00

View file

@ -1,10 +1,10 @@
FROM alpine
LABEL org.opencontainers.image.source=https://github.com/nicolaschan/minecraft-backup
LABEL org.opencontainers.image.source=https://forgejo.nevy.xyz/nev/minecraft-backup
RUN apk add bash coreutils xxd restic util-linux openssh rclone
WORKDIR /code
COPY ./backup.sh .
ENTRYPOINT ["/code/backup.sh"]
ENTRYPOINT ["/bin/sh", "-c"]