You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've encountered an issue with the build_server.sh script - more specifically with the ubuntu docker file.
I presume the issue comes from changes to 'arm64v8/ubuntu:20.04' which is used as base.
Hi,
I've encountered an issue with the build_server.sh script - more specifically with the ubuntu docker file.
I presume the issue comes from changes to 'arm64v8/ubuntu:20.04' which is used as base.
Details:
Step 10 of 18 (line 55 in armv8.ubuntu.Dockerfile)
Output:
=> [base 10/18] RUN sudo apt-get update && sudo apt-get -y install libqt5opengl5-dev libqt5quick5 qml-module-qtlocation qml-module-qtlocation qml-module-qtposi 257.9s
=> => # 95. Ukrainian
=> => # 96. Urdu (Pakistan)
=> => # 97. Uzbek
=> => # 98. Vietnamese
=> => # 99. Wolof
=> => # Country of origin for the keyboard:
Fix:
add 'DEBIAN_FRONTEND=noninteractive' as environment var in front if the second sudo apt-get command:
55: RUN sudo apt-get update && sudo apt-get -y install \
becomes
55: RUN sudo apt-get update && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install \
Kind regards,
Thomas
The text was updated successfully, but these errors were encountered: