fix: install docker cli inside workflow
Production Deployment Pipeline / deploy (push) Failing after 4s Details

This commit is contained in:
mahdi 2026-07-20 23:23:49 +03:30
parent 5054e1c9fb
commit a51f246d1b
1 changed files with 5 additions and 0 deletions

View File

@ -12,6 +12,11 @@ jobs:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install Docker CLI and Compose
run: |
apt-get update
apt-get install -y docker.io docker-compose-v2
- name: Deploy Hello World Application - name: Deploy Hello World Application
run: | run: |
docker pull nginxdemos/hello:plain-text docker pull nginxdemos/hello:plain-text