mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 19:44:31 +08:00
b63f50e00b
Bumps debian from bullseye-20220912-slim to bullseye-20221004-slim. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
No EOL
418 B
Docker
23 lines
No EOL
418 B
Docker
FROM debian:bullseye-20221004-slim
|
|
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
borgbackup \
|
|
rsync \
|
|
fuse \
|
|
python3-llfuse \
|
|
jq \
|
|
; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
VOLUME /root
|
|
|
|
COPY start.sh /usr/bin/
|
|
COPY backupscript.sh /
|
|
RUN chmod +x /usr/bin/start.sh; \
|
|
chmod +x /backupscript.sh
|
|
|
|
USER root
|
|
ENTRYPOINT ["start.sh"] |