We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1c6e31 commit 53d8540Copy full SHA for 53d8540
Dockerfile.rockylinux10
@@ -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
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