mlworkshops/Dockerfile

13 lines
322 B
Docker
Raw Normal View History

2019-04-26 01:21:12 +02:00
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
2019-04-26 01:55:37 +02:00
RUN make config && make all && make check && make install && make doc
2019-04-26 02:05:31 +02:00
ENV PATH=$PATH:/SCTK/bin
2019-04-26 01:21:12 +02:00