Update the dockerfile

* Allow build on click
* expect the dockerfile in subdirectory
This commit is contained in:
Jörn Guy Süß 2025-08-04 11:21:05 +10:00
parent a6a8427eed
commit 35221a7495

View File

@ -15,6 +15,8 @@ on:
push:
branches:
- main
- '*' # This will run the workflow on any branch
workflow_dispatch: # This enables manual triggering
jobs:
build-and-push:
@ -46,7 +48,7 @@ jobs:
- name: Build Docker image
run: |
docker build -t ${{ env.IMAGE_NAME }} .
docker build -f docker/Dockerfile -t ${{ env.IMAGE_NAME }} .
- name: Push Docker image
run: |