Skip to content

Commit 53d8540

Browse files
committed
Add rockylinux 10
1 parent b1c6e31 commit 53d8540

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
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+
:

0 commit comments

Comments
 (0)