From 48b5ad1ebc84cc0e7eb9ee6163abec892bfc1a39 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 21:38:33 +0000 Subject: [PATCH] chore(deps): update python docker tag to v3.12.2 --- Dockerfile | 4 ++-- Dockerfile.wheels | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e6521ae..4b481e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Building wheels for later useage -FROM python:3.10.13 as builder-base +FROM python:3.12.2 as builder-base #RUN curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y @@ -45,7 +45,7 @@ COPY --from=w-builder /wheels ./wheels # base fhempy will be installed -FROM python:3.10.13 as base +FROM python:3.12.2 as base RUN apt update && \ apt install dbus python-dbus-dev curl -y --no-install-recommends \ diff --git a/Dockerfile.wheels b/Dockerfile.wheels index aaafc88..e6fbe87 100644 --- a/Dockerfile.wheels +++ b/Dockerfile.wheels @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1 # base -FROM python:3.11.4 as base +FROM python:3.12.2 as base RUN apt update && \ apt install dbus python-dbus-dev build-essential libssl-dev libffi-dev python3-dev -y --no-install-recommends \ && rm -rf /var/lib/apt/lists/*