From d002dc9b292d5abf0979cd5c879b084f9951c4dd Mon Sep 17 00:00:00 2001 From: jmqm Date: Thu, 15 Jul 2021 00:49:16 -0500 Subject: [PATCH] Fix delete not running - `delete` script was not running as the file was not found. This is fixed. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 2f9bdd0..c6f1c5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,7 @@ ENV DELETE_AFTER 0 COPY entrypoint.sh /usr/local/bin/entrypoint.sh COPY backup.sh /app/ +COPY delete.sh /app/ RUN mkdir /app/log/ \ && chown -R app:app /app/ \