From 84aa6d580e7b633d9238e52ada0b2373d4219704 Mon Sep 17 00:00:00 2001 From: Andrea Spadaccini Date: Thu, 17 Aug 2023 19:53:13 +0200 Subject: [PATCH] fix: update Python version pulled by Docker 3.10.5 seems to generate a conflict. Updating to 3.10.12 resolves the conflict. Fixes #60. --- prometheus/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 prometheus/Dockerfile diff --git a/prometheus/Dockerfile b/prometheus/Dockerfile old mode 100755 new mode 100644 index 99f4800..804ac52 --- a/prometheus/Dockerfile +++ b/prometheus/Dockerfile @@ -18,7 +18,7 @@ RUN \ && if [ "${BUILD_ARCH}" = "aarch64" ]; then ARCH="arm64"; fi \ \ && apk --no-cache add \ - python3=3.10.5-r0 \ + python3=3.10.12-r0 \ py3-idna=3.3-r2 \ py3-certifi=2021.10.8-r0 \ py3-chardet=4.0.0-r3 \