s416267-mlworkshops/Dockerfile

13 lines
376 B
Docker
Raw Permalink Normal View History

2020-04-03 13:51:40 +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
RUN git clone https://github.com/usnistgov/SCTK.git
2020-04-03 16:48:41 +02:00
RUN apt-get update && \
apt-get install -y gnuplot5
2020-04-03 13:51:40 +02:00
WORKDIR SCTK
RUN make config && make all && make check && make install && make doc
ENV PATH=$PATH:/SCTK/bin