From a0488c8d35bc571697fec73a5d34063f941f3448 Mon Sep 17 00:00:00 2001 From: Chia-Wei Tang Date: Thu, 31 Oct 2024 13:47:12 -0700 Subject: [PATCH] fix: disable docker build using github ci runners due to the runner constraints --- .github/workflows/docker-image.yml | 34 +++++++++++++++--------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 7747248..2187f23 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -25,23 +25,23 @@ jobs: id: buildx uses: docker/setup-buildx-action@v3 - - name: Build and push base image - id: docker_build_base - uses: docker/build-push-action@v6 - with: - context: ./ - file: ./base.dockerfile - push: true - tags: ${{ secrets.DOCKER_HUB_USERNAME }}/pytorch-notebook:base, ${{ secrets.DOCKER_HUB_USERNAME }}/pytorch-notebook - - - name: Build and push devel image - id: docker_build_devel - uses: docker/build-push-action@v6 - with: - context: ./ - file: ./base-devel.dockerfile - push: true - tags: ${{ secrets.DOCKER_HUB_USERNAME }}/pytorch-notebook:devel + # - name: Build and push base image + # id: docker_build_base + # uses: docker/build-push-action@v6 + # with: + # context: ./ + # file: ./base.dockerfile + # push: true + # tags: ${{ secrets.DOCKER_HUB_USERNAME }}/pytorch-notebook:base, ${{ secrets.DOCKER_HUB_USERNAME }}/pytorch-notebook + + # - name: Build and push devel image + # id: docker_build_devel + # uses: docker/build-push-action@v6 + # with: + # context: ./ + # file: ./base-devel.dockerfile + # push: true + # tags: ${{ secrets.DOCKER_HUB_USERNAME }}/pytorch-notebook:devel - name: Image digest run: |