Skip to content

Simulate Docker Build #1495

Simulate Docker Build

Simulate Docker Build #1495

Workflow file for this run

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
name: "Simulate Docker Build"
on:
pull_request:
schedule:
- cron: '0 2 * * *' # run daily
jobs:
docker-build:
name: "Simulate Docker Build"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Docker Build"
run: "DOCKER_BUILDKIT=1 docker build ."