diff options
| -rw-r--r-- | .forgejo/workflows/demo.yaml | 14 | ||||
| -rw-r--r-- | Containerfile | 3 |
2 files changed, 17 insertions, 0 deletions
diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml index 7eb18ae..e9cbd71 100644 --- a/.forgejo/workflows/demo.yaml +++ b/.forgejo/workflows/demo.yaml @@ -10,3 +10,17 @@ jobs: runs-on: docker steps: - run: echo All good! + + container-build: + name: Build image + runs-on: docker + + steps: + - uses: actions/checkout@v4 + + - name: Buildah Action + uses: redhat-actions/buildah-build@v2 + with: + image: test-image + containerfiles: | + ./Containerfile diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..dafa2de --- /dev/null +++ b/Containerfile @@ -0,0 +1,3 @@ +FROM debian + +RUN apt-get update && apt-get install -y jq
\ No newline at end of file |
