Torizon Qt Creator omissions, mistakes

There are some omissions in the article
https://developer.toradex.com/knowledge-base/torizon-qtcreator

To build application for target on the developer machine Configure build environment

docker run --rm -it --privileged torizon/binfmt

test

docker run --rm -it arm32v7/debian arch

otherwise

sh: 1: /usr/lib/qt5/bin/rcc: Exec format error

Building the container
instead of

$ docker save qt5-target | ssh torizon@<IP> docker-load 

run

$ docker save qt5-target | ssh torizon@<IP> docker load

Hi @Juzujka,

Thanks for providing the details.

We are already fixing the information in the article about Qt Creator with Torizon.

Best regards,
André Curvello

Also,

Target Container
Dockerfile

ARG BASE_NAME=arm32v7-debian-qt5-wayland
FROM torizon/$BASE_NAME:buster

there is a buster tag. But bullseye is actual now.

Also,

I need to add

RUN apt-get -y update && apt-get install -y --no-install-recommends \
    ...
    qml-module-qtquick-dialogs \
    ...

Ok! Thanks.

Ok! Thanks.