From f1ea8d7185a7ea235e68a00f08e48dd6e658d64a Mon Sep 17 00:00:00 2001 From: Viicos <65306057+Viicos@users.noreply.github.com> Date: Thu, 18 Jan 2024 17:07:33 +0100 Subject: [PATCH] Update Dockerfile to install required build tools For some reason uwsgi doens't ship with wheels --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index bdf094e0..48b7915c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,13 @@ FROM python:3.10-slim-bullseye AS backend-build RUN apt-get update && apt-get install -y --no-install-recommends \ + pkg-config \ + build-essential \ + git \ libpq-dev \ && rm -rf /var/lib/apt/lists/* + WORKDIR /app COPY ./requirements /app/requirements