Files
fedora-runner-image/.gitea/workflows/dockerbuild.yml
Lukas Greve ceb429dd64
Some checks failed
Build with DinD / build (push) Failing after 24s
Update .gitea/workflows/dockerbuild.yml
2025-11-12 21:29:17 +00:00

23 lines
499 B
YAML

name: Build with DinD
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: docker:dind
options: --privileged
steps:
- uses: actions/checkout@v4
- name: Test Docker Access
run: |
docker --version
docker info
docker run --rm hello-world
- name: Build and Push
run: |
docker build -t my-image:${{ github.sha }} .
# Your push commands here