s452111-mlworkshops/Dockerfile

15 lines
407 B
Docker
Raw Normal View History

2020-04-21 19:38:31 +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
WORKDIR SCTK
RUN make config && make all && make check && make install && make doc
ENV PATH=$PATH:/SCTK/bin
2020-04-22 17:00:49 +02:00
RUN apt install -y python-pip
RUN pip install matplotlib
RUN apt install -y python-tk