diff --git a/.github/workflows/standalone.build.yaml b/.github/workflows/standalone.build.yaml index 1478d4ca8..6208c66cc 100644 --- a/.github/workflows/standalone.build.yaml +++ b/.github/workflows/standalone.build.yaml @@ -30,7 +30,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Build conduit base run: | - DEV=TRUE make all + docker build --no-cache -t conduit-base:latest -f ./Dockerfile . - name: Build standalone run: | docker build -t ghcr.io/conduitplatform/conduit-standalone:dev -f ./standalone.Dockerfile . diff --git a/.github/workflows/standalone.production.yaml b/.github/workflows/standalone.production.yaml index 6f83d4525..56ddb9200 100644 --- a/.github/workflows/standalone.production.yaml +++ b/.github/workflows/standalone.production.yaml @@ -31,7 +31,7 @@ jobs: run: echo "RELEASE_VERSION=$(echo ${GITHUB_REF#refs/*/} | sed 's/^v//')" >> $GITHUB_ENV - name: Build conduit base run: | - DEV=TRUE make all + docker build --no-cache -t conduit-base:latest -f ./Dockerfile . - name: Build standalone run: | docker build -t ghcr.io/conduitplatform/conduit-standalone:latest -f ./standalone.Dockerfile .