Browse Source
Add libffi-dev in Dockerfile to fix cffi build
master
Pēteris Caune
3 years ago
No known key found for this signature in database
GPG Key ID: E28D7679E9A9EDE2
1 changed files with
1 additions and
1 deletions
-
docker/Dockerfile
|
|
@ -1,7 +1,7 @@ |
|
|
|
FROM python:3.9-slim-buster as builder |
|
|
|
|
|
|
|
COPY requirements.txt /tmp |
|
|
|
RUN apt update && apt install -y build-essential libpq-dev |
|
|
|
RUN apt update && apt install -y build-essential libffi-dev libpq-dev |
|
|
|
|
|
|
|
RUN \ |
|
|
|
if [ `dpkg --print-architecture` = "armhf" ]; then \ |
|
|
|