Skip to content

Commit

Permalink
Use Python venv in build-docker-images.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Oct 30, 2024
1 parent 1bd3ab5 commit c4ac57e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c4ac57e

Please sign in to comment.