From 1959f15d736772d7fd29d7a91f5636bb7a2bcd4b Mon Sep 17 00:00:00 2001 From: Christian Haschek Date: Sat, 25 Mar 2023 19:39:21 +0100 Subject: [PATCH] init --- .gitea/workflows/build.yaml | 17 +++++++++++++++++ Dockerfile | 6 ++++++ 2 files changed, 23 insertions(+) create mode 100644 .gitea/workflows/build.yaml create mode 100644 Dockerfile diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..66a323e --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -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 \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f4abad9 --- /dev/null +++ b/Dockerfile @@ -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" +