File tree 2 files changed +9
-9
lines changed 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ class RuntimeEnv(ABC):
26
26
"""
27
27
28
28
ENV_DEFAULT : Dict [str , Tuple [str , ...]] = {
29
- "input" : ("HOLOSCAN_INPUTPATH " , "input" ),
30
- "output" : ("HOLOSCAN_OUTPUTPATH " , "output" ),
31
- "model" : ("HOLOSCAN_MODELPATH " , "models" ),
29
+ "input" : ("HOLOSCAN_INPUT_PATH " , "input" ),
30
+ "output" : ("HOLOSCAN_OUTPUT_PATH " , "output" ),
31
+ "model" : ("HOLOSCAN_MODEL_PATH " , "models" ),
32
32
"workdir" : ("HOLOSCAN_WORKDIR" , "" ),
33
33
# "graph": ("MONAI_GRAPH", GraphFactory.DEFAULT), # The 'MONAI_GRAPH' is not part of MAP spec.
34
34
# "datastore": ("MONAI_DATASTORE", DatastoreFactory.DEFAULT), # The 'MONAI_DATASTORE' is not part of MAP spec.
Original file line number Diff line number Diff line change 67
67
68
68
ENV DEBIAN_FRONTEND=noninteractive
69
69
ENV TERM=xterm-256color
70
- ENV HOLOSCAN_INPUTPATH ={full_input_path}
71
- ENV HOLOSCAN_OUTPUTPATH ={full_output_path}
70
+ ENV HOLOSCAN_INPUT_PATH ={full_input_path}
71
+ ENV HOLOSCAN_OUTPUT_PATH ={full_output_path}
72
72
ENV HOLOSCAN_WORKDIR={working_dir}
73
73
ENV HOLOSCAN_APPLICATION={app_dir}
74
74
ENV HOLOSCAN_TIMEOUT={timeout}
75
- ENV HOLOSCAN_MODELPATH ={models_dir}
75
+ ENV HOLOSCAN_MODEL_PATH ={models_dir}
76
76
77
77
RUN apt update \\
78
78
&& apt upgrade -y --no-install-recommends \\
102
102
103
103
ENV DEBIAN_FRONTEND=noninteractive
104
104
ENV TERM=xterm-256color
105
- ENV HOLOSCAN_INPUTPATH ={full_input_path}
106
- ENV HOLOSCAN_OUTPUTPATH ={full_output_path}
105
+ ENV HOLOSCAN_INPUT_PATH ={full_input_path}
106
+ ENV HOLOSCAN_OUTPUT_PATH ={full_output_path}
107
107
ENV HOLOSCAN_WORKDIR={working_dir}
108
108
ENV HOLOSCAN_APPLICATION={app_dir}
109
109
ENV HOLOSCAN_TIMEOUT={timeout}
110
- ENV HOLOSCAN_MODELPATH ={models_dir}
110
+ ENV HOLOSCAN_MODEL_PATH ={models_dir}
111
111
112
112
RUN apt update \\
113
113
&& apt upgrade -y --no-install-recommends \\
You can’t perform that action at this time.
0 commit comments