You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
308 B
6 lines
308 B
FROM gcc:12
|
|
RUN apt-get update \
|
|
&& apt-get -y --no-install-recommends install nlohmann-json3-dev libcurl4-openssl-dev libminizip-dev doctest-dev gcovr \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
RUN wget -q 'https://raw.githubusercontent.com/marzer/tomlplusplus/v3.2.0/toml.hpp' -O /usr/local/include/toml.hpp
|