Files
pg_backup/Dockerfile
2025-05-10 20:33:32 +03:00

11 lines
238 B
Docker

FROM postgres:17
WORKDIR /root
RUN apt update && \
apt -y install restic ca-certificates
COPY docker-entrypoint.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]