s407259-mlworkshops/Dockerfile
2019-04-26 13:29:23 +02:00

14 lines
451 B
Docker

FROM ubuntu:latest
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update -y && apt install -y make
RUN apt install -y git
RUN apt install -y gcc
RUN apt install -y python3
RUN apt install -y python-pandas
RUN gcc --version
RUN pip3 install -r requirements.txt
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