dawjur-mlworkshops/Dockerfile
Dawid Jurkiewicz de9a4da7c2 python image
2020-04-03 13:37:16 +02:00

13 lines
337 B
Docker

FROM python:3
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 python --version
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