Initial version.

This commit is contained in:
2024-01-16 15:48:27 +00:00
commit 06ebca49a5
2 changed files with 8 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
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
ENTRYPOINT ["weewxd"]