From 663bd961306673d9f3840922fd4e245b42d2384d Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Fri, 3 Feb 2023 20:06:14 -0500 Subject: [PATCH] Fix forget sh file missing --- containers/backup-db/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/backup-db/Dockerfile b/containers/backup-db/Dockerfile index be2d7a3..9b6e94f 100644 --- a/containers/backup-db/Dockerfile +++ b/containers/backup-db/Dockerfile @@ -4,10 +4,10 @@ RUN apk add restic --repository http://dl-cdn.alpinelinux.org/alpine/latest-stab COPY ./backup.sh /usr/src/app/backup.sh RUN chmod +x /usr/src/app/backup.sh -COPY ./backup.sh /usr/src/app/forget.sh +COPY ./forget.sh /usr/src/app/forget.sh RUN chmod +x /usr/src/app/forget.sh RUN echo '30 * * * * /usr/src/app/backup.sh' >> /etc/crontabs/root RUN echo '10 0 * * 1 /usr/src/app/forget.sh' >> /etc/crontabs/root -CMD crond -l 2 -f \ No newline at end of file +CMD crond -l 2 -f