mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-12-26 08:41:07 +08:00
939e5fec8a
Bumps alpine from 3.20.2 to 3.20.3. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
489 B
Docker
25 lines
489 B
Docker
# syntax=docker/dockerfile:latest
|
|
FROM alpine:3.20.3
|
|
|
|
RUN set -ex; \
|
|
\
|
|
apk upgrade --no-cache -a; \
|
|
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"
|