github.com/googlecloudplatform/kubernetes-workshops@v0.0.0-20180501174420-d8199445b2c3/advanced/filebeat/Dockerfile (about) 1 FROM debian:jessie 2 3 RUN apt-get update && apt-get install -y --no-install-recommends \ 4 ca-certificates \ 5 curl \ 6 wget 7 8 RUN curl -L -O https://download.elastic.co/beats/filebeat/filebeat_1.2.2_amd64.deb && \ 9 dpkg -i filebeat_1.2.2_amd64.deb 10 11 COPY filebeat.yml /etc/filebeat/filebeat.yml 12 13 CMD ["/usr/bin/filebeat", "-c", "/etc/filebeat/filebeat.yml"]