Files
darkproxy/monitor/Dockerfile
T
auto-ci e4fd2074e2
Configuration validation / lint (push) Has been cancelled
Configuration validation / smoke (push) Has been cancelled
Add monitoring stack files and finalize ARM build cleanups
2026-03-05 20:57:01 -05:00

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"]