jmanhype commited on
Commit Β·
f4beea0
1
Parent(s): d50b40b
fix: install specific setuptools version before requirements to fix MMCM installation
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -48,6 +48,9 @@ RUN rm -rf * .* || true && \
|
|
| 48 |
RUN conda create -n musev python=3.10 -y && \
|
| 49 |
echo "conda activate musev" >> ~/.bashrc
|
| 50 |
|
|
|
|
|
|
|
|
|
|
| 51 |
# Install Python packages from requirements.txt
|
| 52 |
RUN conda run -n musev pip install --no-cache-dir -r requirements.txt
|
| 53 |
|
|
|
|
| 48 |
RUN conda create -n musev python=3.10 -y && \
|
| 49 |
echo "conda activate musev" >> ~/.bashrc
|
| 50 |
|
| 51 |
+
# Install setuptools first with a specific version
|
| 52 |
+
RUN conda run -n musev pip install --no-cache-dir setuptools==65.5.1
|
| 53 |
+
|
| 54 |
# Install Python packages from requirements.txt
|
| 55 |
RUN conda run -n musev pip install --no-cache-dir -r requirements.txt
|
| 56 |
|