Files
pg_backup/Dockerfile
Maksim Syomochkin deb90b0e50
All checks were successful
Build Docker image / docker (push) Successful in 1m41s
add curl
2025-05-11 17:19:18 +03:00

12 lines
244 B
Docker

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