Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove build-essentials from the install package #121

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions Debian/Dockerfile-beta.template
Original file line number Diff line number Diff line change
Expand Up @@ -41,27 +41,13 @@ RUN set -xe; \
RUN set -xe; \
apt-get update; \
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-psycopg2 \
python3-setuptools \
; \
pip3 install %%PIP_OPTIONS%% --upgrade pip; \
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
pip3 install %%PIP_OPTIONS%% --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/*;

# Change the uid of postgres to 26
Expand Down
14 changes: 0 additions & 14 deletions Debian/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,13 @@ RUN set -xe; \
RUN set -xe; \
apt-get update; \
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-psycopg2 \
python3-setuptools \
; \
pip3 install %%PIP_OPTIONS%% --upgrade pip; \
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
pip3 install %%PIP_OPTIONS%% --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/*;

# Change the uid of postgres to 26
Expand Down