From 51acc23b3c34e7ecf4500cec330a8294bdb78f4a Mon Sep 17 00:00:00 2001 From: Sander Roet Date: Mon, 5 Jan 2026 17:07:00 +0100 Subject: [PATCH] Install build-essential for compilation Added build-essential package for compilation. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 553cc57f..af564005 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,8 @@ ADD doc /app/doc ADD tutorials /app/doc ADD MANIFEST.in LICENSE LICENSE.txt .gitmodules .gitignore setup.py /app/ +# add compiler +RUN apt-get update && apt-get install -y build-essential # compile/setup pytom RUN python setup.py install --prefix $CONDA_PREFIX