Zaktualizuj 'Dockerfile'

This commit is contained in:
Jędrzej Furmann 2020-04-03 15:24:34 +00:00
parent 4a849196e2
commit 6f2c0988f1

View File

@ -1 +1,11 @@
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