mikrotik-exporter/Dockerfile.armhf
Steve Brunton 83cbed45d8
CircleCI build to DockerHub too
Also as part of the CircleCI build create a container and push to docker hub.
2018-12-16 23:28:05 -05:00

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"]