From ec819dde3b9a11e18cb7c711f66f3db39d9d9011 Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Fri, 6 Dec 2024 19:50:08 -0500 Subject: [PATCH] attempt to build the test images --- .github/workflows/base.yml | 4 ++-- cicd/Dockerfile.jinja | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index ea3db0e2d..7c2488b64 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -63,7 +63,7 @@ jobs: with: images: | winglian/axolotl-base - axolotlai/axolotl-base +# axolotlai/axolotl-base - name: Login to Docker Hub uses: docker/login-action@v2 with: @@ -76,7 +76,7 @@ jobs: with: context: . file: ./docker/Dockerfile-base - push: ${{ github.event_name != 'pull_request' }} +# push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.metadata.outputs.tags }}-base-py${{ matrix.python_version }}-cu${{ matrix.cuda }}-${{ matrix.pytorch }}${{ matrix.axolotl_extras != '' && '-' || '' }}${{ matrix.axolotl_extras }} labels: ${{ steps.metadata.outputs.labels }} build-args: | diff --git a/cicd/Dockerfile.jinja b/cicd/Dockerfile.jinja index 4d1c4e664..8c9d419c2 100644 --- a/cicd/Dockerfile.jinja +++ b/cicd/Dockerfile.jinja @@ -1,4 +1,4 @@ -FROM axolotlai/axolotl-base:{{ BASE_TAG }} +FROM winglian/axolotl-base:{{ BASE_TAG }} ENV TORCH_CUDA_ARCH_LIST="7.0 7.5 8.0 8.6+PTX" ENV AXOLOTL_EXTRAS="{{ AXOLOTL_EXTRAS }}"