Sign inSign up

ociotec/docker-qt-builder

By ociotec

Updated over 8 years ago

Docker container with Qt + cmake environment ready for building C++ software.

Image
1

10K+

ociotec/docker-qt-builder repository overview

## Docker Qt builder

This is a Ubuntu based docker container with development tools ready to be used to build C++ software.

Installed frameworks & tools:
  • Qt 5.9.3
  • cmake 3.5.1
Dockerfile

You can find Dockerfile & rest of support files under Github project:

### Usage example

Supossing you're in a directory with a cmake project, just run this:

docker run --rm --volume ${PWD}:/root/workspace ociotec/docker-qt-builder \
       bash -c ". /opt/qt59/bin/qt59-env.sh && \
                mkdir -p build && \
                cd build && \
                cmake .. && \
                make -j"

Don't forget to run . /opt/qt59/bin/qt59-env.sh at the beginning to enable Qt environment.

Tag summary

Content type

Image

Digest

Size

307.1 MB

Last updated

over 8 years ago

docker pull ociotec/docker-qt-builder