We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1053a4b commit ecfc86aCopy full SHA for ecfc86a
1 file changed
infrastructure/base-images/cloudharness-base/Dockerfile
@@ -26,7 +26,7 @@ RUN pip install -e /libraries/models --no-cache-dir
26
RUN pip install -e /libraries/cloudharness-common --no-cache-dir
27
RUN pip install -e /libraries/client/cloudharness_cli --no-cache-dir
28
29
-ARG $DEBUG
30
-RUN if [[ -z "$DEBUG" ]] ; then pip install debugpy --prefer-binary ; else echo "Debug not supported" ; fi
+ARG DEBUG
+RUN if [ -z "$DEBUG" ] ; then pip install debugpy --prefer-binary ; else echo "Debug not supported" ; fi
31
32
WORKDIR /
0 commit comments