Spaces:
Runtime error
Runtime error
Commit
·
cbaf699
1
Parent(s):
37aaad7
fix: comment out Conda commands in Dockerfile to prevent unnecessary updates
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -49,9 +49,9 @@ RUN sudo apt update -y && sudo apt upgrade -y && \
|
|
| 49 |
sudo rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
| 50 |
|
| 51 |
# Update Conda and install libsndfile
|
| 52 |
-
RUN sudo conda update --all && \
|
| 53 |
-
|
| 54 |
-
|
| 55 |
|
| 56 |
# Install Python dependencies from requirements.txt
|
| 57 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 49 |
sudo rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
| 50 |
|
| 51 |
# Update Conda and install libsndfile
|
| 52 |
+
# RUN sudo conda update --all && \
|
| 53 |
+
# sudo conda install -c conda-forge libsndfile && \
|
| 54 |
+
# sudo conda clean --all -y
|
| 55 |
|
| 56 |
# Install Python dependencies from requirements.txt
|
| 57 |
RUN pip install --no-cache-dir -r requirements.txt
|