File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,14 @@ COPY . .
1313RUN 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
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
2224RUN pipenv lock
2325RUN pip install click
2426RUN pipenv install --system --deploy --ignore-pipfile
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ name = "pypi"
66[packages ]
77flask = " *"
88jinja2 = " ==3.1.*"
9+ cms-bluebutton-sdk = {file = " ./cms_bluebutton_sdk-1.0.4-py3-none-any.whl" }
910
1011[dev-packages ]
1112
You can’t perform that action at this time.
0 commit comments