s407599-mlworkshops/Dockerfile

14 lines
383 B
Docker
Raw Permalink Normal View History

2020-04-03 12:50:27 +02:00
FROM ubuntu:latest
RUN apt update -y && apt install -y make
RUN apt install -y git
RUN apt install -y gcc
2020-04-03 14:05:40 +02:00
RUN apt install -y python3
2020-04-03 12:50:27 +02:00
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
2020-04-03 14:15:23 +02:00
ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8