2020-04-03 12:24:44 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt update -y && apt install -y make
|
|
|
|
RUN apt install -y git
|
2020-04-03 13:57:17 +02:00
|
|
|
RUN apt install -y software-properties-common
|
2020-04-03 13:56:24 +02:00
|
|
|
RUN apt-add-repository -y universe
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y python-pip
|
2020-04-03 12:24:44 +02:00
|
|
|
RUN apt install -y gcc
|
|
|
|
RUN gcc --version
|
|
|
|
RUN apt install -y build-essential
|
|
|
|
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
|