mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00
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.
This commit is contained in:
parent
9caf213e1d
commit
94e2befb82
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue