11 lines
289 B
Docker
11 lines
289 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update -y \
|
|
&& apt-get install -y make git gcc build-essential \
|
|
&& gcc --version \
|
|
&& 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 |