This commit is contained in:
Christian Haschek 2023-03-25 19:39:21 +01:00
commit 1959f15d73
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,17 @@
name: Budilding image
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
on: [push]
env:
REGISTRY: gitea.haschek.at
IMAGE_NAME: $(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
jobs:
docker:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "Username ${{ github.actor }}"
- run: cat /etc/testy
# - run: curl -fsSL https://get.docker.com -o get-docker.sh
# - run: sh get-docker.sh

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM ubuntu:latest
LABEL maintainer="christian@haschek.at"
LABEL version="1"
LABEL description="This is a custom Docker Image for the build pipeline"