We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4709feb commit ee31045Copy full SHA for ee31045
1 file changed
server/Dockerfile
@@ -13,11 +13,11 @@ COPY . .
13
RUN pip install pipenv debugpy
14
15
# Install cms_bluebutton_sdk from pypi.org or test.pypi.org
16
-# RUN if [ "$BUILD_DEVELOPMENT" = "True" ]; then \
17
-# pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ cms-bluebutton-sdk; \
18
-# else \
19
-# pip install cms-bluebutton-sdk; \
20
-# fi
+RUN if [ "$BUILD_DEVELOPMENT" = "True" ]; then \
+ pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ cms-bluebutton-sdk; \
+ else \
+ pip install cms-bluebutton-sdk; \
+ fi
21
22
# If using a local version of the sdk, copy the wheel file and install it
23
# RUN pip install cms_bluebutton_sdk-1.0.4-py3-none-any.whl
0 commit comments