KGNINJA commited on
Commit
67cabc1
·
verified ·
1 Parent(s): a2a2c5e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -2,7 +2,8 @@ FROM python:3.10-slim
2
 
3
  WORKDIR /app
4
 
5
- RUN pip install --no-cache-dir fastapi uvicorn
 
6
 
7
  COPY app.py .
8
 
 
2
 
3
  WORKDIR /app
4
 
5
+ COPY requirements.txt .
6
+ RUN pip install --no-cache-dir -r requirements.txt
7
 
8
  COPY app.py .
9