Entreprenerdly commited on
Commit
24d09a0
·
verified ·
1 Parent(s): 6a6a8dd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -29,9 +29,7 @@ COPY ./requirements.txt /app/requirements.txt
29
 
30
  # Install Python dependencies
31
  RUN pip install --no-cache-dir --upgrade pip && \
32
- pip install --no-cache-dir fastapi==0.110.0 && \
33
- pip install --no-cache-dir --no-deps -r /app/requirements.txt && \
34
- pip install --no-cache-dir uvicorn[standard]
35
 
36
  COPY . /app
37
 
 
29
 
30
  # Install Python dependencies
31
  RUN pip install --no-cache-dir --upgrade pip && \
32
+ pip install --no-cache-dir -r /app/requirements.txt
 
 
33
 
34
  COPY . /app
35