Install uvloop in Dockerfile

This commit is contained in:
Ske 2018-12-10 19:33:33 +01:00
parent 504e350c45
commit e289895423

View File

@ -5,6 +5,7 @@ RUN apk --no-cache add build-base
WORKDIR /app
ADD requirements.txt /app
RUN pip install --trusted-host pypi.python.org -r requirements.txt
RUN pip install --trusted-host pypi.python.org uvloop
ADD . /app