tuialexandre / docker_cpp_example

Docker based build environment example

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dockerized build environment for C++

Docker based build environment example based on Dmitry Danilov's post

Buildind without docker

# Inside the project folder
mkdir build && cd build
cmake ..
make

Building with docker

# Inside the project folder
make build-docker-deps-image
make

Check executable

The executable should be inside the build folder and can be run with

./a.out

About

Docker based build environment example


Languages

Language:CMake 73.8%Language:C++ 19.7%Language:Makefile 6.6%