Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -26,6 +26,9 @@ ENV CFLAGS="-Wno-error=incompatible-pointer-types -Wno-error=int-conversion"
|
|
| 26 |
RUN pip install --no-cache-dir --no-build-isolation "scikit-learn>=0.24.0,<0.25.0"
|
| 27 |
ENV CFLAGS=""
|
| 28 |
|
|
|
|
|
|
|
|
|
|
| 29 |
# Install remaining requirements
|
| 30 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 31 |
|
|
|
|
| 26 |
RUN pip install --no-cache-dir --no-build-isolation "scikit-learn>=0.24.0,<0.25.0"
|
| 27 |
ENV CFLAGS=""
|
| 28 |
|
| 29 |
+
# Install auto-sklearn from PyPI (includes automl_common submodule)
|
| 30 |
+
RUN pip install --no-cache-dir auto-sklearn
|
| 31 |
+
|
| 32 |
# Install remaining requirements
|
| 33 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 34 |
|