diff options
author | hongbo.mo <352280764@qq.com> | 2023-09-08 18:57:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 13:57:55 +0300 |
commit | a21baeb12202a9020b48c53beaaf4b355228e8ba (patch) | |
tree | 4e2a438bccc9b56c796dd0eb81dcfbe5cae30ab4 | |
parent | 6ff712a6d1a0c85d996e2f681df57a2554cfe5c1 (diff) |
docker : add git to full-cuda.Dockerfile main-cuda.Dockerfile (#3044)
-rw-r--r-- | .devops/full-cuda.Dockerfile | 2 | ||||
-rw-r--r-- | .devops/main-cuda.Dockerfile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.devops/full-cuda.Dockerfile b/.devops/full-cuda.Dockerfile index e5fcb37d..360602d6 100644 --- a/.devops/full-cuda.Dockerfile +++ b/.devops/full-cuda.Dockerfile @@ -12,7 +12,7 @@ FROM ${BASE_CUDA_DEV_CONTAINER} as build ARG CUDA_DOCKER_ARCH=all RUN apt-get update && \ - apt-get install -y build-essential python3 python3-pip + apt-get install -y build-essential python3 python3-pip git COPY requirements.txt requirements.txt diff --git a/.devops/main-cuda.Dockerfile b/.devops/main-cuda.Dockerfile index 30c01196..2b7faf7c 100644 --- a/.devops/main-cuda.Dockerfile +++ b/.devops/main-cuda.Dockerfile @@ -12,7 +12,7 @@ FROM ${BASE_CUDA_DEV_CONTAINER} as build ARG CUDA_DOCKER_ARCH=all RUN apt-get update && \ - apt-get install -y build-essential + apt-get install -y build-essential git WORKDIR /app |