Skip to content

Commit

Permalink
add docker version check and upgrade to docker_check CI action (#5338)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhelmer authored Nov 26, 2024
1 parent 0bd0957 commit 30bdbf3
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/docker_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,18 @@ jobs:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- name: Check Docker Version
run: docker --version

- name: Install Latest Docker
run: |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce
- name: Check out the repo
uses: actions/checkout@v4

- name: Build Docker image
run: docker build .

0 comments on commit 30bdbf3

Please sign in to comment.