2019-05-17 10:53:06 +02:00
|
|
|
FROM python:3
|
2019-04-26 11:14:36 +02:00
|
|
|
|
|
|
|
RUN apt update -y && apt install -y make
|
|
|
|
RUN apt install -y git
|
|
|
|
RUN apt install -y gcc
|
2019-05-17 10:46:54 +02:00
|
|
|
RUN apt install -y gawk
|
2019-04-26 11:14:36 +02:00
|
|
|
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
|
2019-05-17 10:53:06 +02:00
|
|
|
ENV PATH=$PATH:/SCTK/bin
|