s407259-mlworkshops/Dockerfile

14 lines
451 B
Docker
Raw Normal View History

2019-04-26 12:26:13 +02:00
FROM ubuntu:latest
2019-04-26 13:15:48 +02:00
ENV DEBIAN_FRONTEND=noninteractive
2019-04-26 12:26:13 +02:00
RUN apt update -y && apt install -y make
RUN apt install -y git
RUN apt install -y gcc
2019-04-26 12:32:38 +02:00
RUN apt install -y python3
2019-04-26 13:28:08 +02:00
RUN apt install -y python-pandas
2019-04-26 12:26:13 +02:00
RUN gcc --version
2019-04-26 13:28:08 +02:00
RUN pip3 install -r requirements.txt
2019-04-26 12:26:13 +02:00
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