From 94e2befb8290053e1159925e782a17a2dfb19e20 Mon Sep 17 00:00:00 2001 From: Carey Metcalfe Date: Fri, 3 Aug 2018 11:11:12 -0400 Subject: Fix cffi installation in Dockerfile (#364) The Python cffi package requires the libc, libffi and openssl development packages, as well as gcc to compile it. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index fbc0f4a..cbe4af6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM python:3.6-alpine -RUN mkdir /ihatemoney &&\ +RUN apk add gcc libc-dev libffi-dev openssl-dev &&\ + mkdir /ihatemoney &&\ mkdir -p /etc/ihatemoney &&\ pip install --no-cache-dir gunicorn pymysql -- cgit v1.1