Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 1.43 KB

Readme.md

File metadata and controls

27 lines (22 loc) · 1.43 KB

gccx-cmake CircleCI

This repository contains the dockerfile used to build the following docker images:

Build an image with GCC and cmake

Both of the following commands produce an image with tag albert-einstein/gcc7-cmake:3.9.6 containing gcc 7 and cmake 3.9.6.
Just modify the versions to get the desired combination.

Using docker build command

docker build -t albert-einstein/gcc7-cmake:3.9.6 --build-arg CMAKE_VERSION=3.9.6 --build-arg GCC_VERSION=7 .

Using the build.sh script

./scripts/build.sh -c 3.9.6 -g 7 -u albert-einstein .

Nightly build

Some combinations are automatically built each night and pushed to my personal docker hub account. Please have a look at the circle ci configuration to see what versions are built.

Contribution

Don't hesitate to send a pull request or issue if you want to see a new combination in the nightly build :).