mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-08-19 16:58:08 +02:00
17 lines
406 B
Docker
17 lines
406 B
Docker
FROM golang:1.9.2
|
|
MAINTAINER Nicolas Ruflin <ruflin@elastic.co>
|
|
|
|
RUN set -x && \
|
|
apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
netcat python-pip virtualenv && \
|
|
apt-get clean
|
|
|
|
RUN pip install --upgrade setuptools
|
|
|
|
# Setup work environment
|
|
ENV FILEBEAT_PATH /go/src/github.com/elastic/beats/filebeat
|
|
|
|
RUN mkdir -p $FILEBEAT_PATH/build/coverage
|
|
WORKDIR $FILEBEAT_PATH
|