Skip to content

Commit

Permalink
Install dev facetorch without dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasgajarsky committed Jan 22, 2023
1 parent 8a127ea commit e0749a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ RUN ln -s /opt/conda/envs/env/bin/pip /usr/bin/pip
RUN pip install --upgrade pip

# Install facetorch package
COPY facetorch .
ADD facetorch/ facetorch/
COPY environment.yml setup.py version README.md ./
RUN pip install -e .
RUN pip install --no-dependencies -e .

# Install development dependencies
COPY requirements.dev.txt .
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.dev.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ RUN pip install --upgrade pip
# Install facetorch package
COPY facetorch .
COPY environment.yml setup.py version README.md ./
RUN pip install -e .
RUN pip install --no-dependencies -e .

# Install development dependencies
COPY requirements.dev.txt .
Expand Down

0 comments on commit e0749a4

Please sign in to comment.