s452088-mlworkshops/Dockerfile

21 lines
549 B
Docker
Raw Permalink Normal View History

2019-04-26 11:58:33 +02:00
FROM ubuntu:latest
RUN apt update -y && apt install -y make
RUN apt install -y git
RUN apt install -y gcc
2019-04-26 13:31:42 +02:00
RUN apt install -y gawk
2019-04-26 11:58:33 +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
2019-04-26 13:04:44 +02:00
2019-04-26 13:28:44 +02:00
#WORKDIR ~/
#COPY metrics_docker.sh .
2019-04-26 15:39:28 +02:00
RUN apt-get update \
&& apt-get install -y python3-pip python3-dev \
&& cd /usr/local/bin \
&& ln -s /usr/bin/python3 python \
&& pip3 install --upgrade pip