|
|
|
@ -5,4 +5,4 @@ COPY requirements.txt ./ |
|
|
|
|
RUN pip install -r requirements.txt |
|
|
|
|
|
|
|
|
|
COPY *.py ./ |
|
|
|
|
CMD ["gunicorn", "--workers", "10", "--bind", "[::]:5000", "main:app", "--timeout", "90"] |
|
|
|
|
CMD ["gunicorn", "--worker-class", "sanic.worker.GunicornWorker", "--workers", "10", "--bind", "[::]:5000", "main:app", "--timeout", "90"] |
|
|
|
|