mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2024-11-21 11:05:23 +01:00
10 lines
138 B
Docker
10 lines
138 B
Docker
|
FROM alpine:3.6
|
||
|
|
||
|
EXPOSE 9090
|
||
|
|
||
|
COPY scripts/start.sh /app/
|
||
|
COPY mikrotik-exporter /app/
|
||
|
|
||
|
RUN chmod 755 /app/*
|
||
|
|
||
|
ENTRYPOINT ["/app/start.sh"]
|