mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 03:24:48 +08:00
72248fc4bd
Bumps debian from bullseye-20221024-slim to bullseye-20221114-slim. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
24 lines
No EOL
576 B
Docker
24 lines
No EOL
576 B
Docker
FROM debian:bullseye-20221114-slim
|
|
|
|
RUN set -ex; \
|
|
\
|
|
echo "deb http://deb.debian.org/debian bullseye-backports main" >> /etc/apt/sources.list; \
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends borgbackup -t bullseye-backports; \
|
|
apt-get install -y --no-install-recommends \
|
|
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"] |