mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2024-11-13 10:03:56 +01:00
fc9c04efec
Fix for #40 * use debian instead of alpine * bump version to real release
10 lines
177 B
Docker
10 lines
177 B
Docker
FROM debian:9.9-slim
|
|
|
|
EXPOSE 9436
|
|
|
|
COPY scripts/start.sh /app/
|
|
COPY dist/mikrotik-exporter_linux_amd64 /app/mikrotik-exporter
|
|
|
|
RUN chmod 755 /app/*
|
|
|
|
ENTRYPOINT ["/app/start.sh"] |