mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2025-01-02 17:48:04 +01:00
10 lines
172 B
Docker
10 lines
172 B
Docker
FROM alpine:3.6
|
|
|
|
EXPOSE 9436
|
|
|
|
COPY scripts/start.sh /app/
|
|
COPY dist/mikrotik-exporter_linux_amd64 /app/mikrotik-exporter
|
|
|
|
RUN chmod 755 /app/*
|
|
|
|
ENTRYPOINT ["/app/start.sh"] |