This repository has been archived on 2023-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
speedtest-docker/Dockerfile

9 lines
116 B
Docker

FROM python:3
ADD main.py /
run pip install speedtest-cli
run pip install influxdb
CMD [ "python", "./main.py" ]