Skip to content

Commit e2e2994

Browse files
committed
Update the default base image to 22.08 version
Signed-off-by: M Q <mingmelvinq@nvidia.com>
1 parent 9ec14ee commit e2e2994

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/source/developing_with_sdk/packaging_app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ However, the user can choose to override these values by invoking these optional
4646
* `--requirements, -r <FILE_PATH>`: Optional path to requirements.txt containing package dependencies of the application
4747
* `--log-level, -l <LEVEL>`: Set the logging level (`"DEBUG"`, `"INFO"`, `"WARN"`, `"ERROR"`, or `"CRITICAL"`).
4848

49-
* `--base <BASE_IMAGE>`: Base Docker Image (overrides default `"nvcr.io/nvidia/pytorch:21.07-py3"`).
49+
* `--base <BASE_IMAGE>`: Base Docker Image (overrides default `"nvcr.io/nvidia/pytorch:22.08-py3"`).
5050
* `--input-dir, -i <INPUT_DIR>`: Directory mounted in container for Application Input (overrides default `"input"`).
5151
* `--models-dir <MODELS_DIR>`: Directory mounted in container for Models Path (overrides default `"/opt/monai/models"`).
5252
* `--output-dir, -o <OUTPUT_DIR>`: Directory mounted in container for Application Output (overrides default `"output"`).

docs/source/getting_started/installing_app_sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ For packaging your application, [MONAI Application Packager](/developing_with_sd
1919

2020
<https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html#docker>
2121

22-
Currently, `nvcr.io/nvidia/pytorch:21.07-py3` base Docker image is used by [MONAI Application Packager](/developing_with_sdk/packaging_app) by default.
22+
Currently, `nvcr.io/nvidia/pytorch:22.08-py3` base Docker image is used by [MONAI Application Packager](/developing_with_sdk/packaging_app) by default.
2323

2424
The image size is large so please pull the image in advance to save time.
2525

2626
```bash
27-
docker pull nvcr.io/nvidia/pytorch:21.07-py3
27+
docker pull nvcr.io/nvidia/pytorch:22.08-py3
2828
```
2929

3030
:::

monai/deploy/packager/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class DefaultValues:
1616
"""
1717

1818
DOCKER_FILE_NAME = "dockerfile"
19-
BASE_IMAGE = "nvcr.io/nvidia/pytorch:21.07-py3"
19+
BASE_IMAGE = "nvcr.io/nvidia/pytorch:22.08-py3"
2020
DOCKERFILE_TYPE = "pytorch"
2121
WORK_DIR = "/var/monai/"
2222
INPUT_DIR = "input"

notebooks/tutorials/03_segmentation_app.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1646,7 +1646,7 @@
16461646
}
16471647
],
16481648
"source": [
1649-
"!monai-deploy package -b nvcr.io/nvidia/pytorch:21.11-py3 my_app --tag my_app:latest -m model.ts"
1649+
"!monai-deploy package -b nvcr.io/nvidia/pytorch:22.08-py3 my_app --tag my_app:latest -m model.ts"
16501650
]
16511651
},
16521652
{

notebooks/tutorials/06_monai_bundle_app.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1337,7 +1337,7 @@
13371337
}
13381338
],
13391339
"source": [
1340-
"!monai-deploy package -b nvcr.io/nvidia/pytorch:21.11-py3 my_app --tag my_app:latest -m model.ts"
1340+
"!monai-deploy package -b nvcr.io/nvidia/pytorch:22.08-py3 my_app --tag my_app:latest -m model.ts"
13411341
]
13421342
},
13431343
{

0 commit comments

Comments
 (0)