From 7504ae23f65ac95fc4093e4ba41b1937a1ff9992 Mon Sep 17 00:00:00 2001 From: avollkopf <43980694+avollkopf@users.noreply.github.com> Date: Sun, 8 Jan 2023 12:19:50 +0100 Subject: [PATCH] update dockerfile to python 3.10 and requirements for asyncio-mqtt --- Dockerfile | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 23fa44e..69b9e0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ RUN apk --no-cache add curl && mkdir /downloads # Download installation files RUN curl https://github.com/avollkopf/craftbeerpi4-ui/archive/main.zip -L -o ./downloads/cbpi-ui.zip -FROM python:3.9 as base +FROM python:3.10 as base # Install dependencies RUN apt-get update \ diff --git a/requirements.txt b/requirements.txt index 4faa94f..5aa85d0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -18,7 +18,7 @@ numpy==1.22.2 cbpi4gui click==8.1.3 importlib_metadata==4.11.1 -asyncio-mqtt +asyncio-mqtt==0.16.1 psutil==5.9.4 zipp>=0.5 colorama==0.4.6