-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmodulesettings.docker.build.gpu.json
More file actions
23 lines (20 loc) · 1.03 KB
/
modulesettings.docker.build.gpu.json
File metadata and controls
23 lines (20 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"Modules": {
"ObjectDetectionYOLOv8": {
/* When building the Docker image we copy over the code and config files, which includes
this special modulesettings.docker.build.json file that enables us to point the Python
interpreter to the shared, pre-installed python venv in the Docker image. This file will be
renamed to modulesettings.docker.json during the Docker image build process.
If this module were downloaded and installed during runtime, then the usual
modulesettings.linux.json would be loaded, followed by the modulesettings.docker.json file.
The modulesettings.docker.build.json file would be ignored. Downloaded modules would have
their Python interpreter point to a Local install of Python, not the shared, so that Python
packages can be installed and persisted.
*/
"LaunchSettings": {
// This NEEDS to be 'System' for docker pre-installed
"RuntimeLocation": "System" // Can be Local, Shared or System
}
}
}
}