diff --git a/.github/workflows/build-and-push.yml b/.github/workflows/build-and-push.yml index e9757e7..f450d80 100644 --- a/.github/workflows/build-and-push.yml +++ b/.github/workflows/build-and-push.yml @@ -37,7 +37,7 @@ jobs: registry_namespace: "sclorg" registry_username: ${{ secrets[matrix.quayio_username] }} registry_token: ${{ secrets[matrix.quayio_token] }} - dockerfile: Dockerfile.daily-tests + dockerfile: "Dockerfile.daily-tests" tag: "daily-tests" image_name: "daily-tests:latest" quay_application_token: ${{ secrets.QUAY_IMAGE_SCLORG_UPDATE_DESC }} diff --git a/Containerfile.daily-reports b/Dockerfile.daily-reports similarity index 100% rename from Containerfile.daily-reports rename to Dockerfile.daily-reports diff --git a/Containerfile.daily-tests b/Dockerfile.daily-tests similarity index 100% rename from Containerfile.daily-tests rename to Dockerfile.daily-tests diff --git a/Makefile b/Makefile index 8831e8b..61c0de0 100644 --- a/Makefile +++ b/Makefile @@ -7,5 +7,5 @@ shellcheck: ./run-shellcheck.sh `git ls-files *.sh` build_images: - podman build -t quay.io/sclorg/daily-tests:latest -f Containerfile.daily-tests . - podman build -t quay.io/sclorg/daily-reports:latest -f Containerfile.daily-reports . + podman build -t quay.io/sclorg/daily-tests:latest -f Dockerfile.daily-tests . + podman build -t quay.io/sclorg/daily-reports:latest -f Dockerfile.daily-reports .