Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -2,7 +2,8 @@ FROM python:3.12-slim
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
-
# Install
|
|
|
|
| 6 |
RUN pip install uv
|
| 7 |
|
| 8 |
# Copy the ACE repository and our FastAPI files
|
|
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
+
# Install git for git dependencies, then install uv
|
| 6 |
+
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
|
| 7 |
RUN pip install uv
|
| 8 |
|
| 9 |
# Copy the ACE repository and our FastAPI files
|