MINOR: Install docker-compose on docker-build workflows (#18037)

Docker tests rely on docker compose. In recent runs it has been observed that github actions does not provide support for docker compose, so we are installing it explicitly in the workflow.
This commit is contained in:
Vedarth Sharma 2024-12-04 22:01:05 +05:30 committed by Manikumar Reddy
parent 70ad6645fc
commit 8b1d9e2138
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r docker/requirements.txt
pip install --upgrade --force-reinstall --no-cache-dir docker-compose && ln -sf /usr/local/bin/docker-compose /usr/bin/docker-compose
- name: Build image and run tests
working-directory: ./docker
run: |