Skip to content

chore(deps-dev): bump the eslint group across 1 directory with 8 updates #3902

chore(deps-dev): bump the eslint group across 1 directory with 8 updates

chore(deps-dev): bump the eslint group across 1 directory with 8 updates #3902

Workflow file for this run

name: Build Docker image check
on:
pull_request:
jobs:
docker_build:
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 .