diff options
author | crupest <crupest@outlook.com> | 2022-11-23 14:39:29 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-11-23 14:39:29 +0800 |
commit | 6604b793ae2f18a3c13b046136ea242329622910 (patch) | |
tree | 2e51f97f9028eae2bcc066996289718004e25e19 | |
parent | 1981b91094dd00da05c396730c247ca96818d4f3 (diff) | |
download | crupest-6604b793ae2f18a3c13b046136ea242329622910.tar.gz crupest-6604b793ae2f18a3c13b046136ea242329622910.tar.bz2 crupest-6604b793ae2f18a3c13b046136ea242329622910.zip |
Install bash and coreutils for auto-backup.
-rw-r--r-- | docker/auto-backup/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docker/auto-backup/Dockerfile b/docker/auto-backup/Dockerfile index 950c54f..285fc77 100644 --- a/docker/auto-backup/Dockerfile +++ b/docker/auto-backup/Dockerfile @@ -1,4 +1,5 @@ FROM rclone/rclone:latest +RUN apk add --no-cache coreutils bash ARG CRUPEST_AUTO_BACKUP_BUCKET_NAME ARG CRUPEST_AUTO_BACKUP_INIT_DELAY=0 ARG CRUPEST_AUTO_BACKUP_INTERVAL=1d |