Skip to content

Commit ef71d1f

Browse files
author
CloudNativePG Automated Updates
committed
Daily automatic update
1 parent afdefe7 commit ef71d1f

File tree

10 files changed

+30
-0
lines changed

10 files changed

+30
-0
lines changed

Debian/13/bookworm/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --break-system-packages --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --break-system-packages --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/13/bullseye/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/14/bookworm/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --break-system-packages --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --break-system-packages --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/14/bullseye/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/15/bookworm/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --break-system-packages --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --break-system-packages --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/15/bullseye/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/16/bookworm/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --break-system-packages --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --break-system-packages --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/16/bullseye/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/17/bookworm/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --break-system-packages --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --break-system-packages --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/17/bullseye/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

0 commit comments

Comments
 (0)