Can be used to compile qt projects. Based on fedora:latest
FROM fedora MAINTAINER "Ammar Najjar [email protected]" LABEL Description="This image is used to build qt projects" Version="1.0"
RUN dnf update -y RUN dnf install -y qt qt-devel make gcc-c++
$ docker run -it --rm
--privileged=true
-u="1000:1000"
-v="$(pwd):/home/"
-w="/home/"
najjarammar/qt bash -c "cd ./$CODE_DIR; qmake-qt4 $QT_PRO_FILE.pro"
$ docker run -it --rm
--privileged=true
-u="1000:1000"
-v="$(pwd):/home/"
-w="/home/"
najjarammar/qt bash -c "cd ./$CODE_DIR; make -d 1> ../output.log 2> ../error.log"
Content type
Image
Digest
Size
355.1 MB
Last updated
over 10 years ago
docker pull najjarammar/qt