nabilyasini commited on
Commit
d0a74df
·
verified ·
1 Parent(s): 7f959b9

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,8 +5,8 @@ WORKDIR /app
5
  # Install system dependencies
6
  RUN apt-get update && apt-get install -y libxrender1 libxext6 && rm -rf /var/lib/apt/lists/*
7
 
8
- # Install Python 3.10 and rdkit
9
- RUN conda install python=3.10 -y && conda install -c conda-forge rdkit -y && conda clean -afy
10
 
11
  # Copy requirements and install pip packages
12
  COPY requirements_hf.txt .
 
5
  # Install system dependencies
6
  RUN apt-get update && apt-get install -y libxrender1 libxext6 && rm -rf /var/lib/apt/lists/*
7
 
8
+ # Install Python 3.10 and rdkit (fixed)
9
+ RUN conda install python=3.10 rdkit -c conda-forge -y && conda clean -afy
10
 
11
  # Copy requirements and install pip packages
12
  COPY requirements_hf.txt .