Files
flask-formula10/.gitea/workflows/docker.yaml
Christoph Urlacher e36c4f2b18
All checks were successful
Build Formula10 Docker Image / build-docker (push) Successful in 14s
Update docker workflow
2024-02-24 18:43:25 +01:00

29 lines
807 B
YAML

name: Build Formula10 Docker Image
on:
push:
branches: [main]
paths:
- ".gitea/workflows/**"
- "Dockerfile"
- "requirements.txt"
- "formula10/**"
jobs:
build-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 Docker image
run: docker build . --file Dockerfile --tag gitea.vps.chriphost.de/christoph/formula10:latest
- name: Push Docker image
run: docker push gitea.vps.chriphost.de/christoph/formula10:latest