We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dcc3f2 commit 3872a50Copy full SHA for 3872a50
.github/workflows/quality-checks.yml
@@ -419,6 +419,18 @@ jobs:
419
ref: ${{ env.BRANCH_NAME }}
420
fetch-depth: 0
421
422
+ - name: Install Docker Desktop
423
+ run: |
424
+ brew install --cask docker
425
+ sudo /Applications/Docker.app/Contents/MacOS/Docker --unattended --install-privileged-components
426
+ open -a Docker
427
+ # Wait for Docker to start
428
+ while ! docker system info > /dev/null 2>&1; do
429
+ echo "Waiting for Docker to start..."
430
+ sleep 5
431
+ done
432
+ echo "Docker is ready!"
433
+
434
- name: Build dev container
435
run: |
436
docker build -f .devcontainer/Dockerfile -t dev-container-image .
0 commit comments