Change docker build dynamic param to image instead of cuda version
Signed-off-by: Marcel Coetzee <marcel@mooncoon.com>
This commit is contained in:
parent
4f7a6daa25
commit
e6639e6620
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
ARG CUDA_VERSION=12.1.1
|
ARG CUDA_IMAGE="12.1.1-devel-ubuntu22.04"
|
||||||
FROM nvidia/cuda:${CUDA_VERSION}-devel-ubuntu22.04
|
FROM ${CUDA_IMAGE}
|
||||||
|
|
||||||
# We need to set the host to 0.0.0.0 to allow outside access
|
# We need to set the host to 0.0.0.0 to allow outside access
|
||||||
ENV HOST 0.0.0.0
|
ENV HOST 0.0.0.0
|
||||||
|
|
Loading…
Reference in a new issue