mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-01 11:32:27 +08:00
63e7be45fe
Bumps alpine from 3.17.2 to 3.17.3. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
409 B
Docker
23 lines
409 B
Docker
FROM alpine:3.17.3
|
|
|
|
RUN set -ex; \
|
|
\
|
|
apk add --no-cache \
|
|
util-linux-misc \
|
|
bash \
|
|
borgbackup \
|
|
rsync \
|
|
fuse \
|
|
py3-llfuse \
|
|
jq
|
|
|
|
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"]
|
|
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|