s460929-mlworkshops/Dockerfile

15 lines
422 B
Docker
Raw Normal View History

2020-04-03 13:25:09 +02:00
FROM ubuntu:latest
2020-04-10 14:44:19 +02:00
FROM python:3
ADD script.py /
2020-04-03 13:25:09 +02:00
RUN apt update -y && apt install -y make
RUN apt install -y git
RUN apt install -y gcc
2020-04-10 15:59:13 +02:00
RUN apt install bc
2020-04-03 13:25:09 +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