make-install.Dockerfile 301 B

1234567891011
  1. ARG DISTRO=arch
  2. ARG VERSION=current
  3. FROM ${DISTRO}_${VERSION}_dev:latest
  4. # Sanitize new source tree by removing config-time state
  5. COPY . /opt/netdata/latest
  6. WORKDIR /opt/netdata/latest
  7. RUN while read -r f; do cp -p "$f" "../source/$f"; done <../manifest
  8. WORKDIR /opt/netdata/source
  9. RUN make install