Install cryptography module needed for mysql auth.

This commit is contained in:
2024-01-19 07:44:51 +00:00
parent 06ebca49a5
commit 6616c0534a

View File

@@ -2,6 +2,6 @@ FROM python:alpine
RUN apk add --no-cache py3-pip py3-mysqlclient RUN apk add --no-cache py3-pip py3-mysqlclient
# requests needed for the weatherlink_live driver # requests needed for the weatherlink_live driver
RUN python3 -m pip install requests weewx RUN python3 -m pip install requests weewx cryptography
ENTRYPOINT ["weewxd"] ENTRYPOINT ["weewxd"]