Devashishraghav commited on
Commit
6cd68a8
·
verified ·
1 Parent(s): 6b9d05e

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -13,10 +13,9 @@ ENV PATH="/home/user/.local/bin:$PATH"
13
 
14
  WORKDIR /app
15
 
16
- # Install Python dependencies first (layer caching)
17
  COPY --chown=user requirements.txt .
18
  RUN pip install --no-cache-dir --user -r requirements.txt
19
- RUN pip install --no-cache-dir --user google-genai python-dotenv uvicorn
20
 
21
  # Copy application code
22
  COPY --chown=user . .
 
13
 
14
  WORKDIR /app
15
 
16
+ # Install Python dependencies
17
  COPY --chown=user requirements.txt .
18
  RUN pip install --no-cache-dir --user -r requirements.txt
 
19
 
20
  # Copy application code
21
  COPY --chown=user . .