Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- Dockerfile +15 -0
Dockerfile
CHANGED
|
@@ -84,6 +84,21 @@ USER user
|
|
| 84 |
RUN --mount=target=requirements.txt,source=requirements.txt \
|
| 85 |
pip install --no-cache-dir --upgrade -r requirements.txt
|
| 86 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
# App files
|
| 88 |
COPY --chown=user:user . /home/user/app
|
| 89 |
|
|
|
|
| 84 |
RUN --mount=target=requirements.txt,source=requirements.txt \
|
| 85 |
pip install --no-cache-dir --upgrade -r requirements.txt
|
| 86 |
|
| 87 |
+
# Packages from pixi.toml
|
| 88 |
+
RUN pip install --no-cache-dir \
|
| 89 |
+
"numpy>=2.4.3,<3" \
|
| 90 |
+
"pytest>=9.0.3,<10" \
|
| 91 |
+
"scipy>=1.17.1,<2" \
|
| 92 |
+
"scikit-learn>=1.8.0,<2" \
|
| 93 |
+
"tqdm>=4.67.3,<5" \
|
| 94 |
+
"pillow>=12.2.0,<13" \
|
| 95 |
+
"opencv-python>=4.13.0,<5" \
|
| 96 |
+
"open3d>=0.19.0,<0.20" \
|
| 97 |
+
"matplotlib>=3.10.8,<4" \
|
| 98 |
+
"natsort>=8.4.0,<9" \
|
| 99 |
+
"pyyaml>=6.0.3,<7" \
|
| 100 |
+
"httpx>=0.28.1,<0.29"
|
| 101 |
+
|
| 102 |
# App files
|
| 103 |
COPY --chown=user:user . /home/user/app
|
| 104 |
|