From c87e0818586e37f4ccdbe99eaa35821b9e50fe5b Mon Sep 17 00:00:00 2001 From: Julien Perrochet Date: Wed, 11 Sep 2024 13:04:43 +0200 Subject: [PATCH] Squished commit --- monitoring/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/monitoring/Dockerfile b/monitoring/Dockerfile index 641350a1c0..0573574c7f 100644 --- a/monitoring/Dockerfile +++ b/monitoring/Dockerfile @@ -9,7 +9,7 @@ # # This image is intended to be built from the repository root context/folder. -FROM python:3.12.4-slim +FROM python:3.12.6-slim # Not -alpine because: https://stackoverflow.com/a/58028091/651139 # Install system tools @@ -19,6 +19,9 @@ FROM python:3.12.4-slim # ca-certificates: Needed to accurately validate TLS connections RUN apt-get update --fix-missing && apt-get install -y make openssl curl libgeos-dev gcc g++ && apt-get install ca-certificates +# Deal with https://github.com/docker-library/python/pull/954 +RUN pip install --no-cache-dir setuptools==74.1.2 + # Required to build in an ARM environment # gevent: libffi-dev libssl-dev python3-dev build-essential # lxml: libxml2-dev libxslt-dev