Skip to content

Commit

Permalink
Docker build fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
vladd-bit committed Dec 31, 2024
1 parent e6e3c71 commit 4eafd8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Dockerfile_singleuser
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ RUN fix-permissions $CONDA_DIR && fix-permissions /home/$NB_USER
RUN pip3 install --no-cache-dir --upgrade pip

# install the rest of the packages including medcat
RUN pip3 install --no-cache-dir -r ./requirements.txt
COPY ./requirements.txt /srv/jupyterhub/
RUN pip3 install --no-cache-dir -r /srv/jupyterhub/requirements.txt

# install requirements for working with cogstack scripts
RUN pip3 install --no-cache-dir -r notebooks/demo_working_with_cogstack/requirements.txt
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile_singleuser_gpu
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ RUN fix-permissions $CONDA_DIR && fix-permissions /home/$NB_USER
RUN pip3 install --no-cache-dir --upgrade pip

# install the rest of the packages including medcat
RUN pip3 install --no-cache-dir -r ./requirements.txt
COPY ./requirements.txt /srv/jupyterhub/
RUN pip3 install --no-cache-dir -r /srv/jupyterhub/requirements.txt

# install requirements for working with cogstack scripts
RUN pip3 install --no-cache-dir -r notebooks/demo_working_with_cogstack/requirements.txt
Expand Down

0 comments on commit 4eafd8f

Please sign in to comment.