mikrotik-exporter/Dockerfile
Steve Brunton fc9c04efec
use debian instead of alpine
Fix for #40 

* use debian instead of alpine
* bump version to real release
2019-07-21 18:10:43 -04:00

10 lines
177 B
Docker

FROM debian:9.9-slim
EXPOSE 9436
COPY scripts/start.sh /app/
COPY dist/mikrotik-exporter_linux_amd64 /app/mikrotik-exporter
RUN chmod 755 /app/*
ENTRYPOINT ["/app/start.sh"]