From b51ef63816f5cd2c6cebd8e171655f51b035a1bf Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 16 May 2023 13:45:53 +0200 Subject: [PATCH] Bump related deps --- glances/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/glances/Dockerfile b/glances/Dockerfile index cf91c90..632ddea 100644 --- a/glances/Dockerfile +++ b/glances/Dockerfile @@ -13,14 +13,14 @@ COPY requirements.txt /tmp/ RUN \ apk add --no-cache --virtual .build-dependencies \ build-base=0.5-r3 \ - py3-pip=22.3.1-r1 \ - python3-dev=3.10.11-r0 \ + py3-pip=23.1.2-r0 \ + python3-dev=3.11.3-r11 \ \ && apk add --no-cache \ - nginx=1.22.1-r0 \ - py3-packaging=21.3-r2 \ - py3-six=1.16.0-r3 \ - python3=3.10.11-r0 \ + nginx=1.24.0-r3 \ + py3-packaging=23.1-r1 \ + py3-six=1.16.0-r6 \ + python3=3.11.3-r11 \ \ && pip3 install -r /tmp/requirements.txt \ \