diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3ba2e88..77a5694 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,4 +25,15 @@ jobs: pip install pytest - name: Run tests - run: pytest \ No newline at end of file + run: pytest + + docker-build: + runs-on: ubuntu-latest + needs: test + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Build Docker image + run: docker build -t glassboxml-webapp . \ No newline at end of file