Files
grafana/docker/blocks/smtp/Dockerfile

14 lines
252 B
Docker
Raw Normal View History

2015-06-04 14:29:39 +02:00
FROM centos:centos7
LABEL maintainer="Przemyslaw Ozgo <linux@ozgo.info>"
2015-06-04 14:29:39 +02:00
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"]