mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-08 22:57:55 +08:00
d45e2d9616
Bumps alpine from 3.18.4 to 3.18.5. --- 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
422 B
Docker
23 lines
422 B
Docker
FROM alpine:3.18.5
|
|
|
|
RUN set -ex; \
|
|
\
|
|
apk add --no-cache \
|
|
util-linux-misc \
|
|
bash \
|
|
borgbackup \
|
|
rsync \
|
|
fuse \
|
|
py3-llfuse \
|
|
jq
|
|
|
|
VOLUME /root
|
|
|
|
COPY --chmod=770 *.sh /
|
|
|
|
ENTRYPOINT ["/start.sh"]
|
|
# hadolint ignore=DL3002
|
|
USER root
|
|
|
|
LABEL com.centurylinklabs.watchtower.enable="false"
|
|
ENV BORG_RETENTION_POLICY="--keep-within=7d --keep-weekly=4 --keep-monthly=6"
|