Skip to content

add zookeep command at last #155

add zookeep command at last

add zookeep command at last #155

Workflow file for this run

name: Docker Check
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
dockerfile-lint:
name: Lint Dockerfile
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Hadolint
uses: hadolint/hadolint-action@v3.3.0
build:
name: Build Docker image
runs-on: ubuntu-latest
needs: dockerfile-lint
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/build-push-action@v6.18.0
with:
context: .
file: ./Dockerfile
push: false
load: true
tags: devdenbot:ci
provenance: false