Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
liuwen committed Sep 21, 2024
1 parent dd7491c commit 0655f44
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions deepnote/data/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
locale-gen

# Copy and install base packages
COPY basepkgs.txt .
COPY ../basepkgs.txt .
RUN . venv/bin/activate && pip install -r basepkgs.txt && rm basepkgs.txt

# Copy and install image-specific requirements
COPY data/requirements.txt .
COPY requirements.txt .
RUN . venv/bin/activate && pip install -r requirements.txt && rm requirements.txt

# Activate virtual environment in bash
Expand Down
4 changes: 2 additions & 2 deletions deepnote/llm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ RUN python -m venv venv \
&& rm -rf ~/.cache/pip

# Copy and install base packages
COPY basepkgs.txt .
COPY ../basepkgs.txt .
RUN . venv/bin/activate && pip install -r basepkgs.txt && rm basepkgs.txt

# Copy and install image-specific requirements
COPY llm/requirements.txt .
COPY requirements.txt .
RUN . venv/bin/activate && pip install -r requirements.txt && rm requirements.txt

ENV SHELL=/bin/bash
Expand Down

0 comments on commit 0655f44

Please sign in to comment.