taslim19 commited on
Commit
6763b1e
·
1 Parent(s): 861980f

fix: explicitly install uvicorn and fastapi

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -8,5 +8,6 @@ RUN apt-get update \
8
  COPY . /app/
9
  WORKDIR /app/
10
  RUN pip3 install --no-cache-dir -U -r requirements.txt
 
11
 
12
  CMD bash start & python3 server.py
 
8
  COPY . /app/
9
  WORKDIR /app/
10
  RUN pip3 install --no-cache-dir -U -r requirements.txt
11
+ RUN pip3 install uvicorn fastapi
12
 
13
  CMD bash start & python3 server.py