added btrfs-prog to the alpine image
Some checks failed
Build and Push Docker Image / build (push) Failing after 18s

This commit is contained in:
2025-10-19 21:10:28 -07:00
parent 544a29eaf5
commit 8596b18942

View File

@@ -2,10 +2,8 @@
FROM postgres:17-alpine
# Install Docker CLI + bash + core utilities
RUN apk add --no-cache docker-cli bash coreutils
# Create backup directory
RUN mkdir -p /backups
RUN apk add --no-cache docker-cli bash coreutils btrfs-prog \
&& mkdir -p /backups
# Copy backup script
COPY backup.sh /usr/local/bin/backup.sh