From 344a4d3e93126d0b1905fcf57a90e918cea0b444 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Tue, 1 Feb 2022 09:04:25 +0000 Subject: [PATCH] Dockerfile: Add dev headers required for building deps --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fa0998c..2e3cba4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,9 +44,9 @@ RUN set -eu; \ export DEBIAN_FRONTEND=noninteractive ; \ apt-get update ; \ apt-get install -y --no-install-recommends \ - python3 python3-pip python3-setuptools python3-wheel build-essential; \ + python3 python3-pip python3-setuptools python3-wheel build-essential libpython3-dev; \ pip3 install -r requirements.txt; \ - apt-get remove -y --autoremove build-essential; \ + apt-get remove -y --autoremove build-essential libpython3-dev; \ apt-get clean ; rm -rf /var/lib/apt/lists; \ pip3 install hypercorn; \ rm -rf /root/.cache;