hypercorn -k trio

This commit is contained in:
fiatjaf 2020-10-04 23:06:28 -03:00
parent c3ded859df
commit e408febf97
5 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,6 @@ 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 hypercorn
COPY . /app
EXPOSE 5000