postgres-archive/Containerfile
2024-12-19 00:16:41 -06:00

6 lines
197 B
Docker

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"]