From 923064e6a5aacef359a06fd5fd579b1def830ffa Mon Sep 17 00:00:00 2001 From: Marijn Doeve Date: Sat, 19 Aug 2023 16:59:37 +0200 Subject: [PATCH] Build essential --- Containerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index ea67a51..fa2dfd0 100644 --- a/Containerfile +++ b/Containerfile @@ -1,6 +1,8 @@ FROM docker.io/python:3.11-slim AS base -WORKDIR /app +WORKDIR /app + +RUN apt update && apt install -y build-essential ADD requirements.txt ./ RUN pip3 install -r requirements.txt