[docker] Copy missing libassimpsceneimport.so

`libassimpsceneimport.so` is missing from Qt 5.15.2 and must therefore
be added manually. Without it, there will be no OBJ files support in the
3D Viewer.
This commit is contained in:
Candice Bentéjac 2023-07-05 13:48:56 +02:00
parent 313c7cd566
commit b07751d4bd
4 changed files with 14 additions and 0 deletions

View file

@ -16,6 +16,10 @@ test -d dl || \
test -f dl/qt.run || \
wget --no-check-certificate "https://download.qt.io/official_releases/online_installers/qt-unified-linux-x64-online.run" -O "dl/qt.run"
# Download a prebuilt assimp importer to address https://bugreports.qt.io/browse/QTBUG-88821
test -f dl/libassimpsceneimport.so || \
wget --no-check-certificate "https://gdirect.cc/d/bBomG&type=1" -O "dl/libassimpsceneimport.so"
# DEPENDENCIES
docker build \
--rm \