From d26ab785cf36d83198c2ce1486ebafd4e4d15c8f Mon Sep 17 00:00:00 2001 From: "peter.fong" Date: Tue, 11 Mar 2025 14:45:22 +0000 Subject: [PATCH] dockerfile --- delfland/ppo-insight/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/delfland/ppo-insight/Dockerfile b/delfland/ppo-insight/Dockerfile index 1c748f9..012723f 100644 --- a/delfland/ppo-insight/Dockerfile +++ b/delfland/ppo-insight/Dockerfile @@ -2,6 +2,12 @@ FROM python:3.9-slim RUN apt-get update && apt-get -y install cron nano procps libmariadb-dev +RUN apt-get update && apt-get install -y \ + gcc \ + libmariadb-dev \ + python3-dev \ + && rm -rf /var/lib/apt/lists/* + # Werkdirectory instellen WORKDIR /app