Merge pull request #929 from GNS3/use-venv-build-docker-images

Use Python venv in build-docker-images.yml
This commit is contained in:
Jeremy Grossmann 2024-10-30 19:25:32 +10:00 committed by GitHub
commit 1457a3fb50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,7 +60,10 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Install python requirements
run: python3 -m pip install --break-system-packages --requirement .github/bin/requirements.txt
run: |
python3 -m venv venv
source ./venv/bin/activate
python3 -m pip install --requirement .github/bin/requirements.txt
- name: Build and push images
env: