File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -212,11 +212,13 @@ RUN uv pip install --upgrade --system pip setuptools wheel
212212
213213# install the rest of the packages including medcat
214214COPY ./requirements.txt /srv/jupyterhub/
215+ # install requirements for working with cogstack scripts
216+ COPY notebooks/demo_working_with_cogstack/requirements.txt /srv/jupyterhub/working_with_cogstack_requirements.txt
215217
216218RUN if [ "$GPU_BUILD" = "true" ] && [ "$CPU_ARCHITECTURE" = "amd64" ]; then \
217- uv pip install --system --no-cache-dir -r /srv/jupyterhub/requirements.txt && \
219+ uv pip install --system --no-cache-dir -r /srv/jupyterhub/requirements.txt \
218220 else \
219- uv pip install --system --no-cache-dir -r /srv/jupyterhub/requirements.txt --extra-index-url https://download.pytorch.org/whl/cpu/ && \
221+ uv pip install --system --no-cache-dir -r /srv/jupyterhub/requirements.txt --extra-index-url https://download.pytorch.org/whl/cpu/ \
220222 fi
221223
222224#######################################################################################################
You can’t perform that action at this time.
0 commit comments