From 30f6b016316ff7cdb4c4335225efd73e016bb2ff Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 21 Apr 2020 15:57:14 +0200 Subject: [PATCH] dockerfile --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..14938e4 --- /dev/null +++ b/Dockerfile @@ -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 \ No newline at end of file