From 7e9c64eaadc3ff84d74be555ed062a29f694f4aa Mon Sep 17 00:00:00 2001 From: Eirik Haatveit Date: Thu, 14 Mar 2024 12:49:33 +0100 Subject: [PATCH] Download container from master branch --- .github/workflows/container.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/container.yaml b/.github/workflows/container.yaml index 2420e60..31c6a50 100644 --- a/.github/workflows/container.yaml +++ b/.github/workflows/container.yaml @@ -53,12 +53,16 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + - name: Download Dockerfile and install script + run: | + curl -sL https://raw.githubusercontent.com/unioslo/pg-iam/master/Dockerfile -o Dockerfile + curl -sL https://raw.githubusercontent.com/unioslo/pg-iam/master/install.sh -o install.sh - name: Build and push container image uses: docker/build-push-action@v5 with: context: . platforms: ${{ env.QEMU_PLATFORMS }} - file: "Containerfile" + file: "Dockerfile" push: false tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}