superchatai commited on
Commit
a6c99a5
·
verified ·
1 Parent(s): 7af55cb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -7,10 +7,10 @@ RUN apt-get update && apt-get install -y \
7
 
8
  WORKDIR /app
9
 
10
- RUN pip3 install --no-cache-dir fastapi uvicorn python-multipart
11
 
12
  COPY app.py .
13
 
14
  EXPOSE 7860
15
 
16
- CMD python3 -m uvicorn app:app --host 0.0.0.0 --port 7860
 
7
 
8
  WORKDIR /app
9
 
10
+ RUN pip3 install --no-cache-dir python-multipart flask
11
 
12
  COPY app.py .
13
 
14
  EXPOSE 7860
15
 
16
+ CMD python3 app.py --port 7860