From d35adf482ffd6a5c82761458988cbe4f9e5cad56 Mon Sep 17 00:00:00 2001 From: Alberto Date: Tue, 22 Jun 2021 10:13:26 +0200 Subject: [PATCH] push the right docker file --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index e63da3d..757e376 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,9 @@ FROM python:3.7-slim-stretch COPY --from=builder ./dist /dist/ COPY ./backend /dist/ WORKDIR /dist +RUN RUN apt-get update && apt-get install -y \ + libevent-dev \ + python-all-dev RUN pip install -r requirements.txt EXPOSE 5001 ENTRYPOINT ["python", "/dist/__init__.py"] \ No newline at end of file