Faraz Fallahi 4e0f409d42
Some checks failed
Release / dynamic (push) Failing after 2m11s
Release / MXE (push) Failing after 7s
Release / static (push) Failing after 7s
Release / MXE Win32 Dynamic (push) Has been skipped
Release / MXE Win32 Static (push) Has been skipped
Release / MXE Win64 Dynamic (push) Has been skipped
Release / MXE Win64 Static (push) Has been skipped
update ubuntu version
2025-09-13 23:18:28 -07:00
2021-01-31 22:58:49 -05:00
2021-01-31 22:58:49 -05:00
2025-09-13 23:18:28 -07:00
2021-11-21 14:20:50 -05:00
2025-09-13 23:18:28 -07:00
2020-06-06 16:50:44 -04:00
2020-06-06 16:50:44 -04:00
2025-09-13 23:18:28 -07:00
2025-09-13 23:18:28 -07:00
Qt6
2022-04-24 16:34:14 -04:00
Qt6
2022-04-24 16:34:14 -04:00
Qt6
2022-04-24 16:34:14 -04:00
2024-04-20 13:30:12 -07:00
2023-01-14 15:23:19 -05:00
2022-04-24 16:37:29 -04:00
2020-06-21 13:23:05 -04:00

Qt docker development environment

C++ Qt compile environment for Docker (Dynamically Linked, Statically Linked, and Cross-compiled to Windows)

  • Linux Dynamically Linked
docker build --force-rm -f Dockerfile -t fffaraz/qt:latest .
docker run --rm -it -v $(pwd):/app fffaraz/qt:latest /bin/bash
  • Linux Statically Linked
docker build --force-rm -f Dockerfile.static -t fffaraz/qt:static .
docker run --rm -it -v $(pwd):/app fffaraz/qt:static
  • Windows 64bit Cross-compiled Statically Linked
docker build --force-rm -f Dockerfile.win64s -t fffaraz/qt:win64s .
docker run --rm -it -v $(pwd):/app fffaraz/qt:win64s
cd /app
qmake
make -j $(nproc)
  • Windows 64bit Cross-compiled Statically Linked with Qt6 Submodules (Multimedia, Serialport, ...)
docker build --force-rm -f Dockerfile.win64sm -t fffaraz/qt:win64sm .
docker run --rm -it -v $(pwd):/app fffaraz/qt:win64sm
cd /app
qmake
make -j $(nproc)
Description
C++ Qt compile environment for Docker (Dynamically Linked, Statically Linked, and Cross-compiled to Windows)
Readme MIT 182 KiB
Release Latest
2026-02-21 14:59:39 +01:00
Languages
Dockerfile 81.3%
Shell 11.6%
C 7.1%