Add Dockerfile and workflow
All checks were successful
/ build (push) Successful in 36s

This commit is contained in:
sqozz 2024-05-17 21:27:32 +02:00
parent 783cf478cb
commit 08e90538e9
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,12 @@
on:
push:
schedule:
- cron: '0 0 * */1 *'
jobs:
build:
runs-on: gitea-container-builder
steps:
- run: buildah login --username ${{ secrets.username }} --password ${{ secrets.password }} ${GITHUB_SERVER_URL}
- run: wget ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/raw/branch/${GITHUB_REF_NAME}/Dockerfile
- run: buildah build --isolation=chroot | tee container_id
- run: buildah push $(tail -n 1 container_id) ${GITHUB_SERVER_URL/https:\/\//}/${GITHUB_REPOSITORY,,}:latest

3
Dockerfile Normal file
View file

@ -0,0 +1,3 @@
# hadolint ignore=DL3006
FROM alpine:latest
RUN apk add buildah wget