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/*