fix: glob
All checks were successful
/ deploy (push) Successful in 13s

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

View File

@ -5,7 +5,7 @@ RUN apt-get update \
openssh-client \ openssh-client \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN mkdir -pm0700 "$HOME/.ssh/" \ RUN mkdir -pm0700 "$HOME/.ssh/" \
&& touch "$HOME/.ssh"/{known_hosts,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"