dockerfile

This commit is contained in:
unknown 2020-04-21 15:57:14 +02:00
parent 0653292b07
commit 30f6b01631

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
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 apt install -y moreutils
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
RUN pip install matplotlib