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