Spaces:
Sleeping
Sleeping
GitHub Actions
commited on
Commit
·
2755605
1
Parent(s):
7c391bf
🚀 Deploy embedder from GitHub Actions - 2025-10-27 20:09:03
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
|
@@ -30,7 +30,11 @@ RUN pip install --no-cache-dir --upgrade pip && \
|
|
| 30 |
pillow \
|
| 31 |
numpy \
|
| 32 |
pydantic && \
|
| 33 |
-
pip install --no-cache-dir
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
|
| 35 |
# Copy application code
|
| 36 |
COPY --chown=user embedder.py .
|
|
|
|
| 30 |
pillow \
|
| 31 |
numpy \
|
| 32 |
pydantic && \
|
| 33 |
+
pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu \
|
| 34 |
+
torch torchvision && \
|
| 35 |
+
pip install --no-cache-dir \
|
| 36 |
+
open_clip_torch
|
| 37 |
+
|
| 38 |
|
| 39 |
# Copy application code
|
| 40 |
COPY --chown=user embedder.py .
|