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

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -2,7 +2,8 @@ FROM python:3.12-slim
2
 
3
  WORKDIR /app
4
 
5
- # Install uv for fast dependency resolution as recommended by ACE
 
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