From a067c340aee231d1521de2d8cdd6ca4bac863499 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20Wo=C5=BAniak?= <17177420+wozniakpl@users.noreply.github.com> Date: Tue, 20 Feb 2024 19:02:56 +0100 Subject: [PATCH] provide path to dockerfile --- .github/workflows/main.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d75a84611d..7e33941053 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,4 +17,8 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Docker build - run: docker build -t ${{ env.DOCKER_URL }}/${{ env.DOCKER_REPOSITORY }}:${{ github.sha }} . \ No newline at end of file + run: | + docker build \ + -t ${{ env.DOCKER_URL }}/${{ env.DOCKER_REPOSITORY }}:${{ github.sha }} \ + -f docker/Dockerfile \ + . \ No newline at end of file