13 lines
221 B
Docker
13 lines
221 B
Docker
FROM python:3.12-alpine
|
|
|
|
WORKDIR /app
|
|
COPY exporter.py /app/exporter.py
|
|
|
|
ENV EXPORTER_PORT=9100 \
|
|
MONITOR_HOST=dark3proxy \
|
|
MONITOR_PORT=6800 \
|
|
SOCKET_TIMEOUT=2
|
|
|
|
EXPOSE 9100
|
|
CMD ["python", "/app/exporter.py"]
|