From 2c0d7e0008843541e4dca7f1b32b7423757af18d Mon Sep 17 00:00:00 2001 From: subhiqudsi Date: Sat, 23 Mar 2019 00:05:34 +0200 Subject: [PATCH] fix of "pycurl.h:164:13: fatal error: openssl/ssl.h: No such file or directory # include " --- backend/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/Dockerfile b/backend/Dockerfile index aa67c05..058325a 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -17,6 +17,7 @@ RUN pip3 install uwsgi # Copy and Install requirements # (before copying the rest of the code, so docker would cache them and not reinstall) WORKDIR $BACKENDDIR +RUN apt-get install -y libssl-dev COPY requirements.txt . RUN pip3 install -r requirements.txt