Giter Club home page Giter Club logo

cmake-docker-demo's Introduction

Create a Docker image via CMake

This project creates a docker image using CMake. The image holds an executable that was also built by the same CMake build system. It correctly models various file dependencies so that only out-of-date items are rebuilt.

Here's the utilitarian user's guide:

# Clone and build.
mkdir build
cd build
cmake ..
make

# Run the docker image that was just built.
docker run --rm cmake-docker-example

# Run make again. Nothing should be rebuilt.
make

# Touch the main.c file, then run make again.
# Notice how both the executable and the dockerfile
# are rebuilt.
touch ../main.c
make

Best Good practices

This project follows good practices by correctly modeling the various dependencies between the docker image and its source files (i.e. the executable target and Dockerfile).

Bad practices

This project yanks an executable out of the build tree and dumps it into a Docker image. The executable has the wrong RPATH and may not be setup for the image's operating system (e.g. building on Ubuntu but creating a CentOS image).

A better option would be to use CPack to create a "shippable" binary, then inject that package into the image. I've had good success doing this with TGZs and RPMs. Maybe someday I'll extend this example to demonstrate that...

cmake-docker-demo's People

Contributors

andrew-hardin avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.