10
0
This repository has been archived on 2024-07-26. You can view files and clone it, but cannot push or open issues or pull requests.
mikrotik-exporter/Dockerfile

6 lines
159 B
Docker
Raw Normal View History

2021-06-30 20:03:27 +00:00
FROM python:3
2021-07-02 06:01:24 +00:00
RUN pip install aiostream sanic git+https://github.com/laurivosandi/aio_api_ros
2021-06-30 20:03:27 +00:00
ADD mikrotik.py /mikrotik.py
ENTRYPOINT /mikrotik.py
EXPOSE 3001