2020-04-03 13:37:16 +02:00
|
|
|
FROM python:3
|
2020-04-03 11:31:56 +02:00
|
|
|
|
|
|
|
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 13:32:59 +02:00
|
|
|
RUN python --version
|
2020-04-03 11:31:56 +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
|