mikrotik-exporter/Dockerfile

10 lines
177 B
Docker
Raw Permalink Normal View History

FROM debian:9.9-slim
2017-09-05 04:52:14 +02:00
2018-05-07 20:31:19 +02:00
EXPOSE 9436
2017-09-05 04:52:14 +02:00
COPY scripts/start.sh /app/
COPY dist/mikrotik-exporter_linux_amd64 /app/mikrotik-exporter
2017-09-05 04:52:14 +02:00
RUN chmod 755 /app/*
ENTRYPOINT ["/app/start.sh"]