Changed COPY to ADD

This commit is contained in:
Nicole Rappe 2024-01-07 07:18:05 -07:00
parent 462bfa5e01
commit a3e7443a78

View File

@ -5,7 +5,7 @@ FROM alpine:latest
RUN apk --no-cache add git curl rsync
# Add script
COPY repo_watcher.sh /root/Repo_Watcher/repo_watcher.sh
ADD repo_watcher.sh /root/Repo_Watcher/repo_watcher.sh
# Make script executable
RUN chmod +x /root/Repo_Watcher/repo_watcher.sh