mirror of
https://git.gfz-potsdam.de/naaice/tug.git
synced 2025-12-15 10:28:23 +01:00
15 lines
331 B
Docker
15 lines
331 B
Docker
FROM alpine
|
|
|
|
LABEL maintainer="Max Luebke <mluebke@uni-potsdam.de"
|
|
|
|
RUN apk add --no-cache build-base openmp cmake git eigen-dev
|
|
|
|
RUN git clone https://github.com/doctest/doctest.git /doctest \
|
|
&& cd /doctest \
|
|
&& mkdir build \
|
|
&& cd build \
|
|
&& cmake .. \
|
|
&& make install \
|
|
&& cd / \
|
|
&& rm -rf /doctest
|