fix: entrypoint syntax
All checks were successful
/ deploy (push) Successful in 11s

This commit is contained in:
ange 2025-04-27 10:31:12 +00:00
parent bdd712c4e7
commit e8b0de0b1f
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D

View File

@ -8,5 +8,5 @@ RUN mkdir -pm0700 "$HOME/.ssh/" \
&& touch "$HOME/.ssh/known_hosts" "$HOME/.ssh/id_ed25519" \ && touch "$HOME/.ssh/known_hosts" "$HOME/.ssh/id_ed25519" \
&& chmod 0600 "$HOME/.ssh"/* && chmod 0600 "$HOME/.ssh"/*
COPY entrypoint.sh /usr/local/bin/ COPY entrypoint.sh /usr/local/bin/
ENTRYPOINT "entrypoint.sh" ENTRYPOINT ["entrypoint.sh"]
CMD ["borg"] CMD ["borg"]