setup automated build and push action for doxygen build container.
All checks were successful
Build and Publish Docker Image / docker (push) Successful in 25s
All checks were successful
Build and Publish Docker Image / docker (push) Successful in 25s
Signed-off-by: Basil Bruhn <basil.bruhn@psi.ch>
This commit is contained in:
31
.gitea/workflows/build_push.yml
Normal file
31
.gitea/workflows/build_push.yml
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
name: Build and Publish Docker Image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
schedule:
|
||||||
|
# after the base image
|
||||||
|
- cron: '5 3 * * *'
|
||||||
|
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
|
||||||
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
FROM alpine:3.20
|
||||||
|
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
doxygen \
|
||||||
|
graphviz \
|
||||||
|
make \
|
||||||
|
git \
|
||||||
|
bash \
|
||||||
|
openjdk17-jre \
|
||||||
|
plantuml
|
||||||
|
|
||||||
|
WORKDIR /workspace
|
||||||
|
|
||||||
|
ENTRYPOINT ["doxygen"]
|
||||||
|
|
||||||
Reference in New Issue
Block a user