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