Docker image for Qt programming
1.6K
This Docker image is intended to provide a development environment for Qt. It contains the Qt libraries and tools, a C++ compiler and a debugger.
Make sure you have all of the following prerequisites on your development machine:
Once you have satisfied all the prerequisites above you can build your image.
To do that open a command terminal and run the following commands:
git clone https://github.com/marcelohmariano/qt.git
cd qt
docker build -t qt .
docker run -it --rm qt bash
docker run -it --rm \
-v $HOME/.Xauthority:/home/dev/.Xauthority \
-e DISPLAY \
--network host \
--privileged \
qt \
qtcreator
That assumes you are running a Linux OS.
This project is licensed under the MIT License found in the LICENSE file.
Content type
Image
Digest
Size
822.9 MB
Last updated
about 5 years ago
docker pull marcelohmariano/qt