Dockerfile: add build-essential to builder image

- While debugging another problem, I noticed some failures to build
  the C extensions in the logs.  Adding build-essential should fix
  that (also as mentioned in the logs themselves).
- Extensions failed for tornado, sqlalchemy, and pyrsistent(pvectorc)
  and can be found by searching the previous output for "fail".
This commit is contained in:
Richard Darst
2019-12-28 11:56:31 +02:00
committed by Erik Sundell
parent 861a7c5c5e
commit 1af7deaeb3

View File

@@ -30,6 +30,7 @@ USER root
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update \
&& apt-get install -yq --no-install-recommends \
build-essential \
ca-certificates \
locales \
python3-dev \