We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d41a9a commit 796d738Copy full SHA for 796d738
Dockerfile
@@ -1,5 +1,5 @@
1
# base
2
-FROM python:3.9.14 as base
+FROM python:3.11.5 as base
3
RUN apt update && \
4
apt install dbus python-dbus-dev rustc build-essential libssl-dev libffi-dev python3-dev cargo -y --no-install-recommends \
5
&& rm -rf /var/lib/apt/lists/*
@@ -10,7 +10,7 @@ ADD https://raw.githubusercontent.com/fhempy/fhempy/v${FHEMPY_V}/requirements.tx
10
RUN pip wheel --no-cache-dir --wheel-dir /wheels -r requirements.txt
11
12
13
-FROM python:3.9.14-slim as runtime
+FROM python:3.11.5-slim as runtime
14
15
WORKDIR /usr/src/app
16
0 commit comments