Skip to content

Commit

Permalink
'nightly' Using base image from docker.io
Browse files Browse the repository at this point in the history
nvcr.io takes more time to download
  • Loading branch information
YanWenKun committed Sep 11, 2024
1 parent f7b8d4a commit 6418769
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
name: Get current commit hash
id: commit
uses: prompt/actions-commit-hash@v3
-
name: Get current date
id: date
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
-
name: Maximize build disk space
uses: easimon/maximize-build-space@master
Expand Down Expand Up @@ -50,5 +54,5 @@ jobs:
file: ./nightly/Dockerfile
tags: |
yanwk/comfyui-boot:nightly
yanwk/comfyui-boot:nightly-${{ steps.commit.outputs.short }}
yanwk/comfyui-boot:nightly-${{ steps.date.outputs.date }}-${{ steps.commit.outputs.short }}
push: true
2 changes: 1 addition & 1 deletion nightly/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# Ref: https://gitlab.com/nvidia/container-images/cuda/-/issues/47
################################################################################

FROM nvcr.io/nvidia/cuda:12.6.1-cudnn-devel-ubuntu24.04
FROM nvidia/cuda:12.6.1-cudnn-devel-ubuntu24.04

RUN --mount=type=cache,target=/var/cache/apt \
apt-get update \
Expand Down

0 comments on commit 6418769

Please sign in to comment.