|
./configure is failing with error while building docker image from Dockerfile
checking for ps style... unknown
FATAL ERROR: could not determine how to get the "all processes with arguments"
Here is snippet from my Dockerfile
FROM debian:wheezy
MAINTAINER <eldos-dl>
# Update and install essentials
RUN apt-get update && apt-get install -y git build-essential wget openssl libssl-dev curl vim pkg-config
# Node installation
RUN wget ftp://ftp.pcp.io/projects/pcp/download/pcp-3.10.4.src.tar.gz
RUN tar xvzf pcp-3.10.4.src.tar.gz && mv pcp-3.10.4 /opt/pcp
# PCP Installation
WORKDIR /opt/pcp/
RUN apt-get install -y flex bison autoconf python2.7-dev python qt4-qmake libmicrohttpd-dev procps
RUN ps -ef
RUN ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
RUN make && make install
— Reply to this email directly or view it on GitHub.![]()
|