1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-28 10:55:30 +03:00

Unpin virtualenv version

This commit is contained in:
Shane McDonald 2022-01-25 17:41:38 -05:00
parent 2fe7fe30f8
commit 35ba321546
No known key found for this signature in database
GPG Key ID: 6F374AF6E9EB9374

View File

@ -42,7 +42,7 @@ RUN dnf -y update && dnf install -y 'dnf-command(config-manager)' && \
xmlsec1-devel \ xmlsec1-devel \
xmlsec1-openssl-devel xmlsec1-openssl-devel
RUN pip3 install "virtualenv < 20" RUN pip3 install virtualenv
# Install & build requirements # Install & build requirements
@ -123,7 +123,7 @@ RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master
RUN curl -L -o /usr/bin/tini https://github.com/krallin/tini/releases/download/v0.19.0/tini-{{ tini_architecture | default('amd64') }} && \ RUN curl -L -o /usr/bin/tini https://github.com/krallin/tini/releases/download/v0.19.0/tini-{{ tini_architecture | default('amd64') }} && \
chmod +x /usr/bin/tini chmod +x /usr/bin/tini
RUN pip3 install "virtualenv < 20" supervisor RUN pip3 install virtualenv supervisor
RUN rm -rf /root/.cache && rm -rf /tmp/* RUN rm -rf /root/.cache && rm -rf /tmp/*