move script to /usr/local/bin

This commit is contained in:
Jochen Welzel 2021-01-18 14:14:03 +01:00
parent 0e82faf171
commit 3407472939
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ MAINTAINER Jochen Welzel
RUN apk update && apk upgrade && apk add bash && apk add openssh-client
COPY scp_and_reload.sh /
RUN chmod 755 /scp_and_reload.sh
COPY scp_and_reload.sh /usr/local/bin/
RUN chmod 755 /usr/local/bin/scp_and_reload.sh
ENTRYPOINT ["/scp_and_reload.sh"]
ENTRYPOINT ["/usr/local/bin/scp_and_reload.sh"]