From 6616c0534ad8e889e75cb1a20fa3580070a7e42b Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Fri, 19 Jan 2024 07:44:51 +0000 Subject: [PATCH] Install cryptography module needed for mysql auth. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a3c1cae..6234260 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,6 @@ FROM python:alpine RUN apk add --no-cache py3-pip py3-mysqlclient # requests needed for the weatherlink_live driver -RUN python3 -m pip install requests weewx +RUN python3 -m pip install requests weewx cryptography ENTRYPOINT ["weewxd"]