s416178-mlworkshops/Dockerfile

14 lines
377 B
Docker
Raw Permalink 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
RUN git clone https://github.com/usnistgov/SCTK.git
2020-04-03 14:51:35 +02:00
RUN apt-get update && \
apt-get install -y gnuplot5
2020-04-03 11:46:29 +02:00
WORKDIR SCTK
RUN make config && make all && make check && make install && make doc
ENV PATH=$PATH:/SCTK/bin