summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorAndrew Moss <1043609+amoss@users.noreply.github.com>2020-02-27 19:23:18 +0100
committerGitHub <noreply@github.com>2020-02-27 13:23:18 -0500
commit1ea0d8d0897ec2d84ff447874e2ebd6170f54287 (patch)
tree531e154ff5d1d01bcd5fadca9f7229da78161ea3 /Dockerfile
parentb7c793b872379a2fbb4f2ab7890a9b9c688219a8 (diff)
Adding support for ACLK build-configuration (#8223)
* Fixes for issues not caught at review in #8144. (#8211) * Properly scrub build environment for external dependencies. * Remove LWS from our system-level dependencies. We've decided to just always bundle it in the installer. * Add missing dependency for Docker build process. * Use static-build of LWS library created by installer (#8157) * link static lib of LWS * only use static LWS by installer * handle -lcap * fix problem on debian without lcap * fix lws check Co-authored-by: Austin S. Hemmelgarn <ahferroin7@gmail.com> Co-authored-by: Timo <6674623+underhood@users.noreply.github.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index fa5077aac5..d562192786 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,7 +5,7 @@ FROM alpine:3.9 AS build
# Install Dependencies
RUN apk add --no-cache -U alpine-sdk bash curl libuv-dev zlib-dev \
util-linux-dev libmnl-dev gcc make git autoconf \
- automake pkgconfig python logrotate openssl-dev
+ automake pkgconfig python logrotate openssl-dev cmake
# Pass optional ./netdata-installer.sh args with --build-arg INSTALLER_ARGS=...
ARG INSTALLER_ARGS=""