Spaces:
Sleeping
Sleeping
nicothinn commited on
Commit ·
594e96c
1
Parent(s): b9644c1
Add pyarrow for parquet support
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -33,7 +33,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 33 |
|
| 34 |
# Backend Python + modelos (todo en UN solo RUN para evitar caché parcial)
|
| 35 |
COPY app/geo-vision-clip-application/backend/requirements.txt /app/backend/requirements.txt
|
| 36 |
-
RUN
|
| 37 |
-r /app/backend/requirements.txt \
|
| 38 |
torch>=2.1.0 \
|
| 39 |
torchvision>=0.16.0 \
|
|
@@ -45,7 +45,8 @@ RUN pip install --no-cache-dir \
|
|
| 45 |
pykrige \
|
| 46 |
scipy \
|
| 47 |
pandas>=2.0.0 \
|
| 48 |
-
scikit-learn>=1.3.0
|
|
|
|
| 49 |
|
| 50 |
# Copiar backend
|
| 51 |
COPY app/geo-vision-clip-application/backend/ /app/backend/
|
|
|
|
| 33 |
|
| 34 |
# Backend Python + modelos (todo en UN solo RUN para evitar caché parcial)
|
| 35 |
COPY app/geo-vision-clip-application/backend/requirements.txt /app/backend/requirements.txt
|
| 36 |
+
RUN pip install --no-cache-dir \
|
| 37 |
-r /app/backend/requirements.txt \
|
| 38 |
torch>=2.1.0 \
|
| 39 |
torchvision>=0.16.0 \
|
|
|
|
| 45 |
pykrige \
|
| 46 |
scipy \
|
| 47 |
pandas>=2.0.0 \
|
| 48 |
+
scikit-learn>=1.3.0 \
|
| 49 |
+
pyarrow>=14.0.0
|
| 50 |
|
| 51 |
# Copiar backend
|
| 52 |
COPY app/geo-vision-clip-application/backend/ /app/backend/
|