File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ image :
2+ name : gcr.io/kaniko-project/executor:v1.9.0-debug
3+ entrypoint : [""]
4+
5+ stages :
6+ - build-and-push
7+
8+ build-and-push-job :
9+ stage : build-and-push
10+ script :
11+ - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}"
12+ > /kaniko/.docker/config.json
13+ - /kaniko/executor --cache=true
14+ --context $CI_PROJECT_DIR
15+ --dockerfile $CI_PROJECT_DIR/Dockerfile
16+ --destination $CI_REGISTRY_IMAGE:${CI_COMMIT_SHA:0:8}
17+ --destination $CI_REGISTRY_IMAGE:temp
18+ timeout : 10h
Original file line number Diff line number Diff line change 1+ FROM nvidia/cuda:11.8.0-devel-ubuntu22.04
2+
3+ # #############################################################################
4+ # Temporary Installation Directory
5+ # #############################################################################
6+ ENV STAGE_DIR=/tmp
7+ RUN mkdir -p ${STAGE_DIR}
You can’t perform that action at this time.
0 commit comments