Skip to content

Commit 6bbe93d

Browse files
authored
Merge pull request #76 from stackhpc/py-312-fix
Fix python 3.12 install check
2 parents 88da3eb + b6d0810 commit 6bbe93d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/kayobe/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ARG BASE_IMAGE="quay.io/rockylinux/rockylinux:8"
3131
ARG USE_PYTHON_312="false"
3232
RUN dnf install epel-release -y && \
3333
dnf update -y --nobest && \
34-
if [ "$USE_PYTHON_312" ] ; then \
34+
if [ "$USE_PYTHON_312" = "true" ] ; then \
3535
dnf -y install python3.12 && \
3636
ln -sf /bin/python3.12 /bin/python3 && \
3737
python3 -m ensurepip ; fi && \

0 commit comments

Comments
 (0)