fix: install docker cli inside workflow
Production Deployment Pipeline / deploy (push) Failing after 4s
Details
Production Deployment Pipeline / deploy (push) Failing after 4s
Details
This commit is contained in:
parent
5054e1c9fb
commit
a51f246d1b
|
|
@ -12,6 +12,11 @@ jobs:
|
|||
- name: Check out repository code
|
||||
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
|
||||
run: |
|
||||
docker pull nginxdemos/hello:plain-text
|
||||
|
|
|
|||
Loading…
Reference in New Issue