mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-08 01:36:28 +01:00
11 lines
355 B
Docker
11 lines
355 B
Docker
FROM alpine/git:latest@sha256:63d6641dc22922b38b8c19780d2308879ef29a8fb9766ddb90f7e4c9ddeefad3
|
|
# or a more specific image like a Debian slim or Ubuntu base image.
|
|
RUN apk add --no-cache restic fuse-overlayfs
|
|
WORKDIR /app
|
|
|
|
COPY backup.sh /app/backup.sh
|
|
COPY cleanup.sh /app/cleanup.sh
|
|
|
|
# Make scripts executable
|
|
RUN chmod +x /app/backup.sh /app/cleanup.sh
|