6 lines
168 B
Docker
6 lines
168 B
Docker
|
FROM alpine:3.16
|
||
|
RUN \
|
||
|
apk -U add python3 py3-pip py3-requests py3-dateutil py3-beautifulsoup4 && \
|
||
|
pip3 install fdb mysql-connector-python==8.0.29 telepot caldav
|
||
|
|