Files
weewx/Dockerfile
2024-01-16 15:48:27 +00:00

8 lines
183 B
Docker

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"]