Skip to content
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
23 changes: 23 additions & 0 deletions Dockerfile.rockylinux10
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM dalibo/buildpack:rockylinux10

RUN set -ex; \
yum -q -y install \
cyrus-sasl-md5 \
cyrus-sasl-devel \
gcc \
openldap-clients \
openldap-devel \
python3 \
; \
yum clean all ; \
:

ENV PIP_DISABLE_PIP_VERSION_CHECK=1
ENV PIP_NO_PYTHON_VERSION_WARNING=1

RUN set -ex; \
curl -sSL https://bootstrap.pypa.io/pip/get-pip.py | python3.12 - --ignore-installed ; \
pip3.12 --version; \
pip3.12 install flake8 setuptools wheel; \
rm -rf ~/.cache/; \
:
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
default:

alpine rockylinux9 rockylinux8 centos7 centos6 bookworm bullseye bullseye-slim buster stretch:
alpine rockylinux10 rockylinux9 rockylinux8 centos7 centos6 bookworm bullseye bullseye-slim buster stretch:
docker build --pull \
--build-arg http_proxy \
--tag dalibo/buildpack-python:$@ \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Buildpack image for development for Python PostgreSQL tools :

## Tags

- `rockylinux10` with Python 3.12.
- `rockylinux9` with Python 3.9.
- `rockylinux8` with Python 3.6.
- `centos7` with Python 2.7 and 3.6.
Expand Down