remove DEBUG log from gunicorn

This commit is contained in:
Son NK 2020-01-01 10:37:35 +01:00
parent 4dc992277f
commit 3c312dda43
1 changed files with 1 additions and 1 deletions

View File

@ -13,5 +13,5 @@ RUN pip3 install -r requirements.txt
COPY . .
#gunicorn wsgi:app -b 0.0.0.0:7777 -w 2 --timeout 15 --log-level DEBUG
CMD ["gunicorn","wsgi:app","-b","0.0.0.0:7777","-w","2","--timeout","15","--log-level","DEBUG"]
CMD ["gunicorn","wsgi:app","-b","0.0.0.0:7777","-w","2","--timeout","15"]