Add Dockerfile + Workflow

This commit is contained in:
2025-08-31 19:32:52 +02:00
parent e0275b12af
commit eeea15b6cc
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,25 @@
name: Build StateSpaces Docker Image
on:
push:
branches: [master]
# paths:
# - ".gitea/workflows/pocketbase-docker.yaml"
# - "pocketbase.dockerfile"
jobs:
pocketbase-docker:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to container registry
uses: docker/login-action@v3
with:
registry: gitea.vps.chriphost.de
username: ${{ secrets.CONTAINER_REGISTRY_USER }}
password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }}
- name: Build Formula11 Docker Image
run: docker build --file formula11.dockerfile --tag gitea.vps.chriphost.de/christoph/formula11:latest .
- name: Push Formula11 Docker Image
run: docker push gitea.vps.chriphost.de/christoph/formula11:latest