mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-08 01:36:28 +01:00
11 lines
283 B
Docker
11 lines
283 B
Docker
FROM alpine/git:latest
|
|
# 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
|