From 1442eb8e9d265aec84cc755c9925b3de0754c590 Mon Sep 17 00:00:00 2001 From: marcobaobao Date: Wed, 2 Aug 2023 14:54:41 +0200 Subject: [PATCH] dev container github action --- .github/workflows/test-container.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test-container.yml diff --git a/.github/workflows/test-container.yml b/.github/workflows/test-container.yml new file mode 100644 index 0000000..9b9fac3 --- /dev/null +++ b/.github/workflows/test-container.yml @@ -0,0 +1,16 @@ +name: Docker Image CI + +on: + pull_request: + branches: [ "master" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag my-image-name:$(date +%s) \ No newline at end of file