s416267-mlworkshops/Dockerfile
Kamil Paprota 2d522622b1 metryki
2020-04-03 16:48:41 +02:00

13 lines
376 B
Docker

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
RUN apt-get update && \
apt-get install -y gnuplot5
WORKDIR SCTK
RUN make config && make all && make check && make install && make doc
ENV PATH=$PATH:/SCTK/bin