File tree 3 files changed +7
-7
lines changed
src/ue4docker/infrastructure
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -248,9 +248,9 @@ ue4-docker build RELEASE --cuda
248
248
249
249
[source,shell]
250
250
----
251
- # Uses the CUDA 10 .0 base image
252
- ue4-docker build RELEASE --cuda=10 .0
251
+ # Uses the CUDA 12.2 .0 base image
252
+ ue4-docker build RELEASE --cuda=12.2 .0
253
253
{% endhighlight %}
254
254
----
255
255
256
- For a list of supported CUDA versions, see the list of Ubuntu 18 .04 image tags for the https://hub.docker.com/r/nvidia/cuda/[nvidia/cuda] base image.
256
+ For a list of supported CUDA versions, see the list of Ubuntu 22 .04 image tags for the https://hub.docker.com/r/nvidia/cuda/[nvidia/cuda] base image.
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ See the xref:available-container-images.adoc[List of available container images]
34
34
35
35
*-basetag* _basetag_::
36
36
Operating system base image tag to use.
37
- For Linux this is the version of Ubuntu (default is ubuntu18 .04).
37
+ For Linux this is the version of Ubuntu (default is ubuntu22 .04).
38
38
For Windows this is the Windows Server Core base image tag (default is the host OS version)
39
39
40
40
*-branch* _branch_::
Original file line number Diff line number Diff line change 18
18
}
19
19
20
20
# The default ubuntu base to use
21
- DEFAULT_LINUX_VERSION = "ubuntu18 .04"
21
+ DEFAULT_LINUX_VERSION = "ubuntu22 .04"
22
22
23
23
# The default CUDA version to use when `--cuda` is specified without a value
24
- DEFAULT_CUDA_VERSION = "11.4 "
24
+ DEFAULT_CUDA_VERSION = "12.2.0 "
25
25
26
26
# The default memory limit (in GB) under Windows
27
27
DEFAULT_MEMORY_LIMIT = 10.0
@@ -206,7 +206,7 @@ def addArguments(parser):
206
206
parser .add_argument (
207
207
"-basetag" ,
208
208
default = None if platform .system () == "Windows" else DEFAULT_LINUX_VERSION ,
209
- help = "Operating system base image tag to use. For Linux this is the version of Ubuntu (default is ubuntu18 .04). "
209
+ help = "Operating system base image tag to use. For Linux this is the version of Ubuntu (default is ubuntu22 .04). "
210
210
"For Windows this is the Windows Server Core base image tag (default is the host OS version)" ,
211
211
)
212
212
parser .add_argument (
You can’t perform that action at this time.
0 commit comments