Bumps alpine from 3.21.2 to 3.21.3. --- updated-dependencies: - dependency-name: alpine dependency-version: 3.21.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
318 B
Docker
17 lines
318 B
Docker
FROM alpine:3.21.3
|
|
|
|
# this is the default, but just to be explicit
|
|
USER root
|
|
|
|
RUN apk --no-cache add \
|
|
btrfs-progs \
|
|
openssh \
|
|
bash \
|
|
coreutils \
|
|
borgbackup=1.4.0-r0
|
|
|
|
COPY src /src
|
|
COPY config/ssh_config /etc/ssh/
|
|
COPY config/exclude.conf /exclude.conf
|
|
|
|
ENTRYPOINT ["sh", "-c", "/src/schedule.sh"]
|