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

This commit is contained in:
Michał Krawczyk 2025-03-01 20:20:20 +01:00
parent 8ba2a8c14e
commit 9e6ee0ac63
Signed by: nev
GPG key ID: 1D2DFDA82E9CA311

View file

@ -1,10 +1,10 @@
FROM alpine 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 RUN apk add bash coreutils xxd restic util-linux openssh rclone
WORKDIR /code WORKDIR /code
COPY ./backup.sh . COPY ./backup.sh .
ENTRYPOINT ["/code/backup.sh"] ENTRYPOINT ["/bin/sh", "-c"]