add apt get install dependencies

This commit is contained in:
Alberto 2021-06-22 10:03:37 +02:00
parent 242d1a8fc5
commit 63b6437248
No known key found for this signature in database
GPG Key ID: 4F026F48309500A2

View File

@ -2,6 +2,9 @@ FROM python:3.7-slim-stretch
WORKDIR /code
COPY * /code/
RUN RUN apt-get update && apt-get install -y \
libevent-dev \
python-all-dev
RUN pip install -r requirements.txt
EXPOSE 5001