initial commit

This commit is contained in:
2026-04-30 14:11:51 +02:00
commit 576ca3bbef
2 changed files with 62 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
# Dockerfile test build
```yaml
name: Docker Build CI
on: [ push ]
env:
BUILDKIT_VERSION: 'v0.29.0'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/cache@v4
with:
path: /var/lib/buildkit
key: ${{ runner.os }}-buildkit-${{ env.BUILDKIT_VERSION }}
- uses: https://git.klemek.fr/klemek/dockerfile-test-build@v1
with:
buildkit_version: ${{ env.BUILDKIT_VERSION }}
```