This commit is contained in:
s460941 2020-04-24 08:33:17 +02:00
parent abaeeed224
commit 9f9e3c3ca1

View File

@ -5,9 +5,9 @@ RUN apt install -y git
RUN apt install -y gcc RUN apt install -y gcc
RUN gcc --version RUN gcc --version
RUN apt install -y build-essential RUN apt install -y build-essential
RUN pip install pandas RUN pip3 install pandas
RUN pip install numpy RUN pip3 install numpy
RUN pip install matplotlib RUN pip3 install matplotlib
RUN git clone https://github.com/usnistgov/SCTK.git RUN git clone https://github.com/usnistgov/SCTK.git
WORKDIR SCTK WORKDIR SCTK
RUN make config && make all && make check && make install && make doc RUN make config && make all && make check && make install && make doc