From c5e880628a1b769105b4586aa3ef1be221b05fd4 Mon Sep 17 00:00:00 2001 From: Ashleigh Carr Date: Sun, 11 Feb 2024 13:38:43 +0000 Subject: [PATCH] Fix CI using Containerfile --- .github/workflows/pull_requests.yml | 2 +- .github/workflows/releases.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_requests.yml b/.github/workflows/pull_requests.yml index f6a9683c..5d2b7e40 100644 --- a/.github/workflows/pull_requests.yml +++ b/.github/workflows/pull_requests.yml @@ -43,7 +43,7 @@ jobs: uses: redhat-actions/buildah-build@v2 with: image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - containerfiles: ./Containerfile + containerfiles: ./Dockerfile platforms: linux/amd64 oci: true # Webpack seems to use a lot of open files, increase the max open file limit to accomodate. diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 89e4efc5..c5433742 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -63,7 +63,7 @@ jobs: image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} tags: ${{ steps.image-metadata.outputs.tags }} labels: ${{ steps.image-metadata.outputs.labels }} - containerfiles: ./Containerfile + containerfiles: ./Dockerfile platforms: linux/amd64 oci: true # Webpack seems to use a lot of open files, increase the max open file limit to accomodate.