Skip to content

Commit ecfc86a

Browse files
committed
#815 fix bash command in dockerfile
1 parent 1053a4b commit ecfc86a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • infrastructure/base-images/cloudharness-base

infrastructure/base-images/cloudharness-base/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN pip install -e /libraries/models --no-cache-dir
2626
RUN pip install -e /libraries/cloudharness-common --no-cache-dir
2727
RUN pip install -e /libraries/client/cloudharness_cli --no-cache-dir
2828

29-
ARG $DEBUG
30-
RUN if [[ -z "$DEBUG" ]] ; then pip install debugpy --prefer-binary ; else echo "Debug not supported" ; fi
29+
ARG DEBUG
30+
RUN if [ -z "$DEBUG" ] ; then pip install debugpy --prefer-binary ; else echo "Debug not supported" ; fi
3131

3232
WORKDIR /

0 commit comments

Comments
 (0)