diff --git a/Dockerfile b/Dockerfile index 114ec3b..c3409ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,6 +27,12 @@ ENV WHITELIST_USERS '' WORKDIR /app +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + build-essential && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* + COPY ./requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt