Spaces:
Sleeping
Sleeping
fix Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -8,8 +8,9 @@ COPY . .
|
|
| 8 |
|
| 9 |
# install dependcies
|
| 10 |
RUN conda install -y pandas numpy scikit-learn
|
| 11 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
| 12 |
RUN pip install pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-2.4.0+cpu.html
|
|
|
|
|
|
|
| 13 |
#if you need to download executable and run them switch to the default non-root user
|
| 14 |
USER user
|
| 15 |
|
|
|
|
| 8 |
|
| 9 |
# install dependcies
|
| 10 |
RUN conda install -y pandas numpy scikit-learn
|
|
|
|
| 11 |
RUN pip install pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-2.4.0+cpu.html
|
| 12 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 13 |
+
|
| 14 |
#if you need to download executable and run them switch to the default non-root user
|
| 15 |
USER user
|
| 16 |
|