Use Python venv in build-docker-images.yml

This commit is contained in:
grossmj 2024-10-30 18:30:29 +10:00
parent 1bd3ab5f90
commit c4ac57e200
No known key found for this signature in database
GPG Key ID: 0A2D76AC45EA25CD

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: