Release 0.6: Added Postgres 18; Updated libs
Some checks failed
Build Docker Image / build-and-deploy-image (pg15) (push) Successful in 1m55s
Build Docker Image / build-and-deploy-image (pg16) (push) Failing after 21s
Build Docker Image / build-and-deploy-image (pg17) (push) Failing after 21s
Build Docker Image / build-and-deploy-image (pg18) (push) Failing after 22s
Some checks failed
Build Docker Image / build-and-deploy-image (pg15) (push) Successful in 1m55s
Build Docker Image / build-and-deploy-image (pg16) (push) Failing after 21s
Build Docker Image / build-and-deploy-image (pg17) (push) Failing after 21s
Build Docker Image / build-and-deploy-image (pg18) (push) Failing after 22s
This commit is contained in:
20
Dockerfile.pg18
Normal file
20
Dockerfile.pg18
Normal file
@@ -0,0 +1,20 @@
|
||||
FROM alpine:3.23
|
||||
|
||||
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 postgresql18-client python3 py3-pip tini
|
||||
|
||||
COPY ./ $APP_HOME
|
||||
WORKDIR $APP_HOME
|
||||
|
||||
RUN python3 -m pip install $APP_HOME
|
||||
|
||||
ENTRYPOINT ["tini", "--"]
|
||||
|
||||
CMD ["python3", "start.py"]
|
||||
Reference in New Issue
Block a user