mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2024-11-25 11:46:36 +01:00
83cbed45d8
Also as part of the CircleCI build create a container and push to docker hub.
10 lines
155 B
Docker
10 lines
155 B
Docker
FROM alpine:3.6
|
|
|
|
EXPOSE 9436
|
|
|
|
COPY scripts/start.sh /app/
|
|
COPY dist/mikrotik-exporter_linux_amd64 /app/
|
|
|
|
RUN chmod 755 /app/*
|
|
|
|
ENTRYPOINT ["/app/start.sh"] |