s460941-metrics/Dockerfile

18 lines
457 B
Docker
Raw Permalink Normal View History

2020-04-22 17:04:11 +02:00
FROM ubuntu:latest
RUN apt update -y && apt install -y make
RUN apt install -y git
RUN apt install -y gcc
RUN gcc --version
RUN apt install -y build-essential
2020-04-24 08:35:46 +02:00
RUN apt update -y && apt install -y \
2020-04-24 08:49:17 +02:00
python-pip \
python3-tk
2020-04-24 08:37:54 +02:00
RUN pip install pandas
RUN pip install numpy
2020-04-24 08:43:12 +02:00
RUN pip install matplotlib
2020-04-22 17:04:11 +02:00
RUN git clone https://github.com/usnistgov/SCTK.git
WORKDIR SCTK
RUN make config && make all && make check && make install && make doc
ENV PATH=$PATH:/SCTK/bin