Files
docker-postgres-backup/Dockerfile.pg17
Eugene Morozov fb0187db5d
All checks were successful
Build Docker Image / build-and-deploy-image (pg15) (push) Successful in 1m44s
Build Docker Image / build-and-deploy-image (pg16) (push) Successful in 1m41s
Build Docker Image / build-and-deploy-image (pg17) (push) Successful in 1m43s
Release 0.5: Updated libs
2025-06-07 20:30:38 +03:00

21 lines
440 B
Docker

FROM alpine:3.22
ENV APP_HOME=/home/app/docker-postgres-backup \
PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
PIP_BREAK_SYSTEM_PACKAGES=1 \
PIP_NO_CACHE_DIR=off \
PIP_DISABLE_PIP_VERSION_CHECK=on \
LANG=en_US.UTF-8
RUN apk --no-cache add postgresql17-client python3 py3-pip tini
COPY ./ $APP_HOME
WORKDIR $APP_HOME
RUN python3 -m pip install $APP_HOME
ENTRYPOINT ["tini", "--"]
CMD ["python3", "start.py"]