From e48e524c0a48db06d318b89495859cb0c85c6f55 Mon Sep 17 00:00:00 2001 From: Patrick Canal <56410215+Superredstone@users.noreply.github.com> Date: Mon, 14 Sep 2026 19:05:54 +0200 Subject: [PATCH] ci: add docker image build --- .github/workflows/docker-image.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..e44f9fb --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,16 @@ +name: Docker Image CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag patrickcanal.it:$(date +%s)