7 lines
168 B
Docker
7 lines
168 B
Docker
FROM python:3.11
|
|
|
|
RUN pip install requests urllib3
|
|
ADD zte_exporter.py .
|
|
|
|
CMD python3 zte_exporter.py --port $PORT $IP --username $USERNAME $PASSWORD --device $DEVICE
|