commit 8dbd5c37b51d9d5bf0075e26abca84b688ae5484 Author: Thayol Date: Wed May 20 20:52:32 2026 +0200 Initial commit diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..6a50970 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,23 @@ +name: Build Runner Image +on: + push: + branches: [main] + +jobs: + build: + runs-on: fedora-latest + steps: + - name: Install tools + run: dnf install -y git buildah + + - name: Checkout + run: git clone ${{ gitea.server_url }}/${{ gitea.repository }} . + + - name: Build image + run: buildah bud -t ${{ gitea.server_url }}/${{ gitea.repository }}:latest . + + - name: Push image + run: | + buildah login -u ${{ gitea.actor }} -p ${{ secrets.GITEA_TOKEN }} ${{ gitea.server_url }} + buildah push ${{ gitea.server_url }}/${{ gitea.repository }}:latest + diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e44de8f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM fedora:latest + +RUN dnf install -y \ + git \ + nodejs \ + npm \ + curl \ + wget \ + jq \ + tar \ + xz \ + findutils \ + which \ + gcc \ + make \ + && dnf clean all +