s416085-mlworkshops/Dockerfile

15 lines
374 B
Docker
Raw Normal View History

2019-05-16 20:50:05 +02:00
FROM python:3.6.8-stretch
2019-04-26 15:12:31 +02:00
RUN apt update -y && apt install -y make
RUN apt install -y git
RUN apt install -y gcc
RUN apt install -y gawk
RUN gcc --version
RUN apt install -y build-essential
RUN git clone https://github.com/usnistgov/SCTK.git
2019-05-16 20:31:45 +02:00
2019-05-16 20:50:05 +02:00
RUN python --version
2019-04-26 15:12:31 +02:00
WORKDIR SCTK
RUN make config && make all && make check && make install && make doc
ENV PATH=$PATH:/SCTK/bin