Skip to content

Commit

Permalink
fix: disable docker build using github ci runners due to the runner c…
Browse files Browse the repository at this point in the history
…onstraints
  • Loading branch information
Tverous committed Oct 31, 2024
1 parent 19b2ee7 commit a0488c8
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit a0488c8

Please sign in to comment.