8 lines
195 B
Docker
8 lines
195 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 cryptography
|
|
|
|
ENTRYPOINT ["weewxd"]
|