Spaces:
Sleeping
Sleeping
Upload Dockerfile with huggingface_hub
Browse files- 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
|
| 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 .
|