postgres-archive/Containerfile

7 lines
197 B
Text
Raw Permalink Normal View History

2024-12-19 07:16:41 +01:00
FROM docker.io/library/python:3.13.1-alpine3.21
RUN apk --update add postgresql xz; pip install b2
WORKDIR app
ADD dump-db.sh archive.sh sync-b2.sh entrypoint.sh ./
ENTRYPOINT ["./entrypoint.sh"]