From 997a8c2e0130d5996c713040a034f3becc697805 Mon Sep 17 00:00:00 2001 From: Christian Peper Date: Mon, 6 Jul 2026 14:49:43 +0200 Subject: [PATCH] feat(ci): build devcontainer image(s) add a CI job to build the devcontainer image(s) --- .github/workflows/docker-image.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..8e17d0c --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,18 @@ +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 dev-opentofu/.devcontainer/Dockerfile --tag dev-opentofu:$(date +%s)