Sergey Mikhno commited on
Commit
f1b6611
·
1 Parent(s): 4385b6a

dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -7,4 +7,4 @@ COPY ./app .
7
  RUN pip3 install -r requirements.txt
8
  ENV MPLCONFIGDIR=/tmp/MPLCONFIGDIR/
9
  ENV YOLO_CONFIG_DIR=/tmp/YOLO
10
- CMD ["gunicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
7
  RUN pip3 install -r requirements.txt
8
  ENV MPLCONFIGDIR=/tmp/MPLCONFIGDIR/
9
  ENV YOLO_CONFIG_DIR=/tmp/YOLO
10
+ CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]