Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build_server.sh hangs on keyboard choice for ubuntu armv8 #38

Closed
thomasschockaert opened this issue Apr 18, 2022 · 0 comments
Closed

build_server.sh hangs on keyboard choice for ubuntu armv8 #38

thomasschockaert opened this issue Apr 18, 2022 · 0 comments

Comments

@thomasschockaert
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants