initial commit
Build and Publish Docker Image / docker (push) Failing after 1m12s

This commit is contained in:
2026-07-13 13:11:24 +02:00
commit ca365359da
2 changed files with 32 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
name: Build and Publish Docker Image
on:
push:
branches:
- main
workflow_dispatch:
jobs:
docker:
runs-on: ubuntu-latest-intranet
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
registry: gitea.psi.ch
username: ${{ github.repository_owner }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: gitea.psi.ch/${{ github.repository }}:latest
+4
View File
@@ -0,0 +1,4 @@
FROM gitea.psi.ch/images/rhel9
RUN dnf install -y git nodejs rsync curl \
&& dnf clean all