Add doctest library to ci.Dockerfile

This commit is contained in:
Max Luebke 2024-04-04 13:08:04 +02:00
parent b104fdcf52
commit 332f419faf

View File

@ -1,4 +1,14 @@
FROM alpine
MAINTAINER Max Luebke <mluebke@uni-potsdam.de>
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