Merge pull request #5874 from chrismeyersfsu/fix-pin_virtualenv_awx

pin virtualenv < 20 for awx_web builds

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2020-02-11 14:16:14 +00:00 committed by GitHub
commit eafd40291e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,7 @@ RUN dnf -y update && \
ADD https://github.com/krallin/tini/releases/download/v0.14.0/tini /tini
RUN chmod +x /tini
RUN python3 -m ensurepip && pip3 install virtualenv
RUN python3 -m ensurepip && pip3 install "virtualenv < 20"
RUN pip3 install supervisor
ADD Makefile /tmp/Makefile