File tree Expand file tree Collapse file tree 3 files changed +25
-1
lines changed
Expand file tree Collapse file tree 3 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 1+ FROM dalibo/buildpack:rockylinux10
2+
3+ RUN set -ex; \
4+ yum -q -y install \
5+ cyrus-sasl-md5 \
6+ cyrus-sasl-devel \
7+ gcc \
8+ openldap-clients \
9+ openldap-devel \
10+ python3 \
11+ ; \
12+ yum clean all ; \
13+ :
14+
15+ ENV PIP_DISABLE_PIP_VERSION_CHECK=1
16+ ENV PIP_NO_PYTHON_VERSION_WARNING=1
17+
18+ RUN set -ex; \
19+ curl -sSL https://bootstrap.pypa.io/pip/get-pip.py | python3.12 - --ignore-installed ; \
20+ pip3.12 --version; \
21+ pip3.12 install flake8 setuptools wheel; \
22+ rm -rf ~/.cache/; \
23+ :
Original file line number Diff line number Diff line change 11default :
22
3- alpine rockylinux9 rockylinux8 centos7 centos6 bookworm bullseye bullseye-slim buster stretch :
3+ alpine rockylinux10 rockylinux9 rockylinux8 centos7 centos6 bookworm bullseye bullseye-slim buster stretch :
44 docker build --pull \
55 --build-arg http_proxy \
66 --tag dalibo/buildpack-python:$@ \
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ Buildpack image for development for Python PostgreSQL tools :
1313
1414## Tags
1515
16+ - ` rockylinux10 ` with Python 3.12.
1617- ` rockylinux9 ` with Python 3.9.
1718- ` rockylinux8 ` with Python 3.6.
1819- ` centos7 ` with Python 2.7 and 3.6.
You can’t perform that action at this time.
0 commit comments