Skip to content

Commit edf53ae

Browse files
committed
Add rockylinux 10
1 parent b1c6e31 commit edf53ae

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

Dockerfile.rockylinux10

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
default:
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:$@ \

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)