quart run settings and hypercorn on docker/Procfile.

This commit is contained in:
fiatjaf 2020-09-14 23:28:10 -03:00
parent f01028eac7
commit 42c6620a07
5 changed files with 14 additions and 5 deletions

View file

@ -3,7 +3,7 @@ FROM python:3.7-slim
WORKDIR /app
COPY requirements.txt /app/
RUN pip install --no-cache-dir -q -r requirements.txt
RUN pip install --no-cache-dir -q gunicorn gevent
RUN pip install --no-cache-dir -q hypercorn
COPY . /app
EXPOSE 5000