Skip to content

Commit 2f9c14f

Browse files
committed
removing local sdk setup
1 parent cace0f8 commit 2f9c14f

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

server/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ COPY . .
1313
RUN pip install pipenv debugpy
1414

1515
# 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
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
2121

2222
# 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
23+
# RUN pip install cms_bluebutton_sdk-1.0.4-py3-none-any.whl
2424
RUN pipenv lock
2525
RUN pip install click
2626
RUN pipenv install --system --deploy --ignore-pipfile

server/Pipfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ name = "pypi"
66
[packages]
77
flask = "*"
88
jinja2 = "==3.1.*"
9-
cms-bluebutton-sdk = {path = "cms_bluebutton_sdk-1.0.4-py3-none-any.whl"}
109

1110
[dev-packages]
1211

0 commit comments

Comments
 (0)