Skip to content

Commit 7ff89a2

Browse files
committed
Removed refs to old working_with_cogstack.
Removed refs to old working_with_cogstack II. Removed .gitmodules. Docker singleuser correction. Re-remove old ref. Singleruser docker install req step fix.
1 parent 654c520 commit 7ff89a2

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

.gitmodules

Lines changed: 0 additions & 6 deletions
This file was deleted.

Dockerfile_singleuser

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -212,15 +212,11 @@ RUN uv pip install --upgrade --system pip setuptools wheel
212212

213213
# install the rest of the packages including medcat
214214
COPY ./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
217215

218216
RUN if [ "$GPU_BUILD" = "true" ] && [ "$CPU_ARCHITECTURE" = "amd64" ]; then \
219-
uv pip install --system --no-cache-dir -r /srv/jupyterhub/requirements.txt && \
220-
uv pip install --system --no-cache-dir -r /srv/jupyterhub/working_with_cogstack_requirements.txt ; \
217+
uv pip install --system --no-cache-dir -r /srv/jupyterhub/requirements.txt ; \
221218
else \
222-
uv pip install --system --no-cache-dir -r /srv/jupyterhub/requirements.txt --extra-index-url https://download.pytorch.org/whl/cpu/ && \
223-
uv pip install --system --no-cache-dir -r /srv/jupyterhub/working_with_cogstack_requirements.txt --extra-index-url https://download.pytorch.org/whl/cpu/ ; \
219+
uv pip install --system --no-cache-dir -r /srv/jupyterhub/requirements.txt --extra-index-url https://download.pytorch.org/whl/cpu/ ; \
224220
fi
225221

226222
#######################################################################################################

0 commit comments

Comments
 (0)