commit 06ebca49a588e592fb05ff41fbaa8ebad8368143 Author: Petru Paler Date: Tue Jan 16 15:48:27 2024 +0000 Initial version. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1377554 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.swp diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a3c1cae --- /dev/null +++ b/Dockerfile @@ -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"]