Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] add setuptools installation and pinning to the Dockerfile #779

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion monitoring/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Loading