Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -10,8 +10,8 @@ RUN pip install uv
|
|
| 10 |
COPY . /app
|
| 11 |
|
| 12 |
# Install ACE framework using uv (referencing the local pyproject.toml in the cloned repo)
|
| 13 |
-
# and install FastAPI components
|
| 14 |
-
RUN uv pip install --system fastapi uvicorn pydantic litellm
|
| 15 |
# Since the cloned directory has pyproject.toml, we can install the local package
|
| 16 |
RUN uv pip install --system -e .
|
| 17 |
|
|
|
|
| 10 |
COPY . /app
|
| 11 |
|
| 12 |
# Install ACE framework using uv (referencing the local pyproject.toml in the cloned repo)
|
| 13 |
+
# and install FastAPI components + boto3 for pydantic-ai bedrock support
|
| 14 |
+
RUN uv pip install --system fastapi uvicorn pydantic litellm boto3
|
| 15 |
# Since the cloned directory has pyproject.toml, we can install the local package
|
| 16 |
RUN uv pip install --system -e .
|
| 17 |
|