From 135c10207783dbef626b83e8f3ba491715e2b057 Mon Sep 17 00:00:00 2001 From: Manish Gupta Date: Thu, 23 May 2024 11:33:32 +0530 Subject: [PATCH] fix: action --- .github/workflows/build-aio-base.yml | 2 +- aio/Dockerfile.base | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build-aio-base.yml b/.github/workflows/build-aio-base.yml index 2e36d0ca107..839200c53cd 100644 --- a/.github/workflows/build-aio-base.yml +++ b/.github/workflows/build-aio-base.yml @@ -87,7 +87,7 @@ jobs: uses: docker/build-push-action@v5.1.0 with: context: ./aio - file: ./api/Dockerfile.base + file: ./aio/Dockerfile.base platforms: ${{ env.BUILDX_PLATFORMS }} tags: ${{ env.BASE_IMG_TAG }} push: true diff --git a/aio/Dockerfile.base b/aio/Dockerfile.base index c97cda4ee67..e4c2a78b1e1 100644 --- a/aio/Dockerfile.base +++ b/aio/Dockerfile.base @@ -23,7 +23,6 @@ RUN apt-get update && apt-get install -y postgresql postgresql-contrib RUN apt-get update && apt-get install -y redis-server # Install MinIO - ARG TARGETARCH RUN if [ "$TARGETARCH" = "amd64" ]; then \ wget https://dl.min.io/server/minio/release/linux-amd64/minio -O /usr/local/bin/minio; \