1
0
mirror of https://github.com/ansible/galaxy.git synced 2026-02-05 09:45:11 +01:00

Pin setuptools in docker base images (#2786)

This commit is contained in:
Andrew Crosby
2021-09-09 13:57:10 -04:00
committed by GitHub
parent 0717775075
commit 15aab87f42
2 changed files with 2 additions and 2 deletions

View File

@@ -51,7 +51,7 @@ RUN python3.6 -m venv "${GALAXY_VENV}" \
&& "${GALAXY_VENV}/bin/pip" install -U \
'pip' \
'wheel' \
'setuptools' \
'setuptools>=57,<58' \
&& "${GALAXY_VENV}/bin/pip" install -r /tmp/requirements.txt
COPY scripts/docker/dev/entrypoint.sh /entrypoint

View File

@@ -20,5 +20,5 @@ RUN python3.6 -m venv ${GALAXY_VENV} \
&& "${GALAXY_VENV}/bin/pip" install -U \
'pip' \
'wheel' \
'setuptools' \
'setuptools>=57,<58' \
&& "${GALAXY_VENV}/bin/pip" install -r /tmp/requirements.txt