s416251-mlworkshops/dockerfile

11 lines
341 B
Plaintext
Raw Normal View History

2020-04-03 16:07:22 +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
2020-04-03 16:15:43 +02:00
RUN git clone https://git.wmi.amu.edu.pl/s416251/s416251-mlworkshops.git
2020-04-03 16:07:22 +02:00
WORKDIR SCTK
RUN make config && make all && make check && make install && make doc
ENV PATH=$PATH:/SCTK/bin