s416178-mlworkshops/Dockerfile

13 lines
348 B
Docker
Raw Normal View History

2020-04-03 11:46:29 +02:00
FROM ubuntu:latest
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 14:36:48 +02:00
RUN apt install -y gnuplot
2020-04-03 11:46:29 +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