s416094-mlworkshops/Dockerfile

12 lines
339 B
Docker
Raw Normal View History

2019-05-07 13:08:40 +02:00
FROM python:3
2019-04-26 11:01:37 +02:00
RUN apt update -y && apt install -y make
RUN apt install -y git
RUN apt install -y gcc
2019-04-26 11:53:24 +02:00
RUN apt install -y gawk
2019-04-26 11:01:37 +02:00
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