add metric counter

This commit is contained in:
Krzysztof Jurkiewicz 2019-04-26 15:39:28 +02:00
parent 34dfbdac5d
commit 09a2c700c5

View File

@ -7,10 +7,14 @@ RUN apt install -y gawk
RUN gcc --version RUN gcc --version
RUN apt install -y build-essential RUN apt install -y build-essential
RUN git clone https://github.com/usnistgov/SCTK.git RUN git clone https://github.com/usnistgov/SCTK.git
RUN apt-get install -y python3
WORKDIR SCTK WORKDIR SCTK
RUN make config && make all && make check && make install && make doc RUN make config && make all && make check && make install && make doc
ENV PATH=$PATH:/SCTK/bin ENV PATH=$PATH:/SCTK/bin
#WORKDIR ~/ #WORKDIR ~/
#COPY metrics_docker.sh . #COPY metrics_docker.sh .
RUN apt-get update \
&& apt-get install -y python3-pip python3-dev \
&& cd /usr/local/bin \
&& ln -s /usr/bin/python3 python \
&& pip3 install --upgrade pip