ghostdrive1 commited on
Commit
2881fb4
·
verified ·
1 Parent(s): 6686fb2

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. 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