mikrotik-exporter/Dockerfile.armhf

10 lines
182 B
Docker
Raw Normal View History

2017-09-05 04:52:14 +02:00
FROM arm32v7/busybox:1.27.2
EXPOSE 9090
COPY scripts/start.sh /app/
COPY dist/mikrotik-exporter_linux_arm /app/mikrotik-exporter
2017-09-05 04:52:14 +02:00
RUN chmod 755 /app/*
ENTRYPOINT ["/app/start.sh"]