Skip to content

Commit

Permalink
add pip installation to the docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
gcroci2 committed Jun 20, 2024
1 parent 90a6c06 commit 0ca24d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ RUN \
apt install -y gcc && \
## Create the environment and install the dependencies
mamba env create -f /home/deeprank2/deeprank2-docker.yml && \
## Activate the environment and install pip packages
/opt/conda/bin/conda run -n deeprank2 pip install -r /home/deeprank2/requirements-docker.txt && \
## Activate the environment automatically when entering the container
echo "source activate deeprank2" >~/.bashrc && \
# Get the data for running the tutorials
Expand Down
2 changes: 0 additions & 2 deletions env/deeprank2-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,3 @@ dependencies:
- ruff>=0.3.0
- dill>=0.3.8
- pyarrow>=15.0.0
- pip:
- --requirement requirements-docker.txt

0 comments on commit 0ca24d2

Please sign in to comment.