2020-04-03 13:07:36 +02:00
|
|
|
FROM ubuntu:latest
|
2020-04-05 19:35:27 +02:00
|
|
|
ENV TZ=Europe/Minsk
|
|
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
2020-04-05 19:37:08 +02:00
|
|
|
RUN apt update -y
|
|
|
|
RUN apt install -y make
|
|
|
|
RUN apt install -y git
|
|
|
|
RUN apt install -y gcc
|
2020-04-03 13:07:36 +02:00
|
|
|
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 19:18:41 +02:00
|
|
|
RUN apt install -y python-pip
|
|
|
|
RUN pip install matplotlib
|
|
|
|
RUN apt install -y python-tk
|
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
|