From 6f2c0988f173b5f319e5bd1545bbfbdc1460598b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Furmann?= Date: Fri, 3 Apr 2020 15:24:34 +0000 Subject: [PATCH] Zaktualizuj 'Dockerfile' --- Dockerfile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0519ecb..9b6b59c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1,11 @@ - \ No newline at end of file +FROM ubuntu:latest + +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 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 \ No newline at end of file