mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2024-11-15 10:15:18 +01:00
10 lines
182 B
Docker
10 lines
182 B
Docker
FROM arm32v7/busybox:1.27.2
|
|
|
|
EXPOSE 9090
|
|
|
|
COPY scripts/start.sh /app/
|
|
COPY dist/mikrotik-exporter_linux_arm /app/mikrotik-exporter
|
|
|
|
RUN chmod 755 /app/*
|
|
|
|
ENTRYPOINT ["/app/start.sh"] |