mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-04-08 17:15:05 +02:00
16 lines
357 B
Docker
16 lines
357 B
Docker
FROM golang:1.12.9
|
|
|
|
RUN \
|
|
apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
netcat \
|
|
python-pip \
|
|
rsync \
|
|
virtualenv \
|
|
libpcap-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install --upgrade pip
|
|
RUN pip install --upgrade setuptools
|
|
RUN pip install --upgrade docker-compose==1.23.2
|