fix(python): removed python3.9 as it as causing issues with 3.11
!89 fixes #9
This commit is contained in:
@ -48,14 +48,15 @@ RUN apt update \
|
|||||||
openssh-client \
|
openssh-client \
|
||||||
git \
|
git \
|
||||||
sshpass \
|
sshpass \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
|
||||||
&& mkdir -p /etc/ansible/roles \
|
&& mkdir -p /etc/ansible/roles \
|
||||||
&& mkdir -p /etc/ansible/collections \
|
&& mkdir -p /etc/ansible/collections \
|
||||||
&& mkdir -p /workdir \
|
&& mkdir -p /workdir \
|
||||||
&& apt list --installed \
|
&& apt list --installed \
|
||||||
# see issue https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/issues/9 for following two lines
|
# see issue https://gitlab.com/nofusscomputing/projects/ansible/execution_environment/-/issues/9 for following two lines
|
||||||
&& rm /usr/bin/python3 \
|
&& apt remove -y \
|
||||||
&& ln -s /usr/local/bin/python3.11 /usr/bin/python3
|
python3* \
|
||||||
|
libpython3* \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
|
||||||
WORKDIR /workdir
|
WORKDIR /workdir
|
||||||
|
Reference in New Issue
Block a user