blob: 62bb01941418b6c909194b6d91f37c234e0abeff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
FROM debian:buster AS build
# Disable apt/dpkg interactive mode
ENV DEBIAN_FRONTEND=noninteractive
# Install all build dependencies
COPY packaging/installer/install-required-packages.sh /tmp/install-required-packages.sh
RUN /tmp/install-required-packages.sh --dont-wait --non-interactive netdata-all
# Install Clang and set as default CC
RUN apt-get install -y clang && \
update-alternatives --install /usr/bin/cc cc /usr/bin/clang 100
WORKDIR /netdata
COPY . .
# Build Netdata
RUN ./netdata-installer.sh --dont-wait --dont-start-it --disable-go --require-cloud
|