Sergey Mikhno commited on
Commit ·
11b4e2f
1
Parent(s): 1bad634
dir
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -5,4 +5,5 @@ RUN apt-get update && apt-get install -y build-essential && apt-get install -y l
|
|
| 5 |
WORKDIR /hab
|
| 6 |
COPY ./app .
|
| 7 |
RUN pip3 install -r requirements.txt
|
| 8 |
-
|
|
|
|
|
|
| 5 |
WORKDIR /hab
|
| 6 |
COPY ./app .
|
| 7 |
RUN pip3 install -r requirements.txt
|
| 8 |
+
ENV MPLCONFIGDIR=/tmp/MPLCONFIGDIR/
|
| 9 |
+
CMD gunicorn --bind 0.0.0.0:8888 app:app
|