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 8a24af6 commit 88da3ebCopy full SHA for 88da3eb
docker/kayobe/Dockerfile
@@ -28,8 +28,13 @@ ENV container docker
28
# CMD ["/usr/sbin/init"]
29
30
ARG BASE_IMAGE="quay.io/rockylinux/rockylinux:8"
31
+ARG USE_PYTHON_312="false"
32
RUN dnf install epel-release -y && \
33
dnf update -y --nobest && \
34
+ if [ "$USE_PYTHON_312" ] ; then \
35
+ dnf -y install python3.12 && \
36
+ ln -sf /bin/python3.12 /bin/python3 && \
37
+ python3 -m ensurepip ; fi && \
38
dnf install -y gcc git vim python3-pyyaml findutils\
39
libffi-devel sudo which openssh-server e2fsprogs \
40
diffstat diffutils debootstrap procps-ng gdisk util-linux \
0 commit comments