1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-10-31 10:11:34 +01:00

add docker ci/cd

This commit is contained in:
Michael Unknown 2022-04-05 23:20:29 +02:00
parent 11319c5e0b
commit 4b6cac32a6
4 changed files with 158 additions and 2 deletions

View file

@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14...3.22)
project(
GreeterStandalone
DESCRIPTION "A standalone minimal webserver application using the Crow framework"
DESCRIPTION "A standalone minimal webapi application using the Crow framework"
LANGUAGES CXX
)

View file

@ -5,7 +5,7 @@ RUN set -eux; \
apt-get install -y --no-install-recommends \
cmake \
ninja-build \
# build with Boost as system lib - this should be orders of magnitude faster to configure than
# configure/build with Boost as system lib - this should be orders of magnitude faster to configure than
# downloading via CPM.cmake while Boost's CMake support is still experimental
libboost-all-dev \
;