Files
flask-formula10/.gitea/workflows/docker.yaml
Christoph Urlacher 4fc13471f5
All checks were successful
Build Formula10 Docker Image / build-docker (push) Successful in 15s
Enable docker workflow on all branches
2024-03-09 20:05:34 +01:00

29 lines
809 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