From d1e35bb1909c58c41a39cd56449ca7ce1ab5ff10 Mon Sep 17 00:00:00 2001 From: Taylor North Date: Tue, 2 Apr 2024 17:08:53 +0100 Subject: [PATCH] fix: gcc compiler and python header files are no longer present in build --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 868320f..befdf2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,7 @@ ARG ARCHES_PROJECT ENV ARCHES_PROJECT $ARCHES_PROJECT COPY docker/entrypoint.sh ${WEB_ROOT}/ RUN apt-get update && apt-get -y install python3-libxml2 git +RUN apt-get -y install build-essential python3-dev RUN . ../ENV/bin/activate \ && pip install --upgrade pip setuptools \ && pip install starlette-graphene3 \