2020-04-03 13:07:36 +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-03 16:40:37 +02:00
|
|
|
RUN apt install num-utils
|
2020-04-03 17:12:55 +02:00
|
|
|
RUN apt install bc
|
2020-04-05 18:34:57 +02:00
|
|
|
RUN apt install -y software-properties-common
|
2020-04-05 18:31:32 +02:00
|
|
|
RUN add-apt-repository ppa:deadsnakes/ppa
|
|
|
|
RUN apt install python3.7
|
|
|
|
RUN apt install python3-pip
|
|
|
|
RUN pip3 install matplotlib
|
2020-04-03 13:07:36 +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
|