Dockerfile aktualisiert
All checks were successful
Create postgresql docker image / Explore-Gitea-Actions (push) Successful in 1m29s
All checks were successful
Create postgresql docker image / Explore-Gitea-Actions (push) Successful in 1m29s
This commit is contained in:
16
Dockerfile
16
Dockerfile
@ -20,7 +20,7 @@ FROM postgres:16.6-bookworm
|
|||||||
LABEL name="PostgreSQL Container Images" \
|
LABEL name="PostgreSQL Container Images" \
|
||||||
vendor="The CloudNativePG Contributors" \
|
vendor="The CloudNativePG Contributors" \
|
||||||
version="${PG_VERSION}" \
|
version="${PG_VERSION}" \
|
||||||
release="7" \
|
release="32" \
|
||||||
summary="PostgreSQL Container images." \
|
summary="PostgreSQL Container images." \
|
||||||
description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres 16.6-bookworm."
|
description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres 16.6-bookworm."
|
||||||
|
|
||||||
@ -46,11 +46,6 @@ RUN set -xe; \
|
|||||||
RUN set -xe; \
|
RUN set -xe; \
|
||||||
apt-get update; \
|
apt-get update; \
|
||||||
apt-get install -y --no-install-recommends \
|
apt-get install -y --no-install-recommends \
|
||||||
# We require build dependencies to build snappy 0.6
|
|
||||||
# on Python 3.11 or greater.
|
|
||||||
# TODO: Remove build deps once barman unpins the snappy version or
|
|
||||||
# https://github.com/EnterpriseDB/barman/issues/905 is completed
|
|
||||||
build-essential python3-dev libsnappy-dev \
|
|
||||||
python3-pip \
|
python3-pip \
|
||||||
python3-psycopg2 \
|
python3-psycopg2 \
|
||||||
python3-setuptools \
|
python3-setuptools \
|
||||||
@ -58,15 +53,6 @@ RUN set -xe; \
|
|||||||
pip3 install --break-system-packages --upgrade pip; \
|
pip3 install --break-system-packages --upgrade pip; \
|
||||||
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
|
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
|
||||||
pip3 install --break-system-packages --no-deps -r requirements.txt; \
|
pip3 install --break-system-packages --no-deps -r requirements.txt; \
|
||||||
# We require build dependencies to build snappy 0.6
|
|
||||||
# on Python 3.11 or greater.
|
|
||||||
# TODO: Remove build deps once barman unpins the snappy version or
|
|
||||||
# https://github.com/EnterpriseDB/barman/issues/905 is completed
|
|
||||||
apt-get remove -y --purge --autoremove \
|
|
||||||
build-essential \
|
|
||||||
python3-dev \
|
|
||||||
libsnappy-dev \
|
|
||||||
; \
|
|
||||||
rm -rf /var/lib/apt/lists/*;
|
rm -rf /var/lib/apt/lists/*;
|
||||||
|
|
||||||
# Change the uid of postgres to 26
|
# Change the uid of postgres to 26
|
||||||
|
Reference in New Issue
Block a user