mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
14 lines
252 B
Docker
14 lines
252 B
Docker
FROM centos:centos7
|
|
LABEL maintainer="Przemyslaw Ozgo <linux@ozgo.info>"
|
|
|
|
RUN \
|
|
yum update -y && \
|
|
yum install -y net-snmp net-snmp-utils && \
|
|
yum clean all
|
|
|
|
COPY bootstrap.sh /tmp/bootstrap.sh
|
|
|
|
EXPOSE 161
|
|
|
|
ENTRYPOINT ["/tmp/bootstrap.sh"]
|