mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2025-01-06 18:28:10 +01:00
83cbed45d8
Also as part of the CircleCI build create a container and push to docker hub.
10 lines
165 B
Docker
10 lines
165 B
Docker
FROM arm32v7/busybox:1.27.2
|
|
|
|
EXPOSE 9090
|
|
|
|
COPY scripts/start.sh /app/
|
|
COPY dist/mikrotik-exporter_linux_arm /app/
|
|
|
|
RUN chmod 755 /app/*
|
|
|
|
ENTRYPOINT ["/app/start.sh"] |