-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f5f9a5e
commit e07f867
Showing
4 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ LABEL maintainer="Hyperion Project <[email protected]>" \ | |
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
# update | ||
RUN apt-get update && apt-get -y upgrade | ||
RUN apt-get update | ||
|
||
# install qt5 or qt6 (qt6 is not available on debian buster/bullseye) | ||
RUN if [ "$SUITE" = "bookworm" ] && [ "$QT_VERSION" = "6" ]; then \ | ||
|
@@ -79,8 +79,5 @@ RUN curl -kL https://github.com/balena-io/qemu/releases/download/v7.0.0%2Bbalena | |
# set qemu exec flag | ||
RUN chmod +x /usr/bin/qemu-static | ||
|
||
# cleanup | ||
RUN apt-get clean -q -y && apt-get autoremove -y && rm -rf /var/lib/apt/lists/* | ||
|
||
# set entrypoint | ||
ENTRYPOINT [ "/usr/bin/qemu-static" ] | ||
ENTRYPOINT [ "/usr/bin/qemu-static", "/usr/bin/env", "QEMU_EXECVE=1" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ ENV DEBEMAIL="[email protected]" | |
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
# update | ||
RUN apt-get update && apt-get -y upgrade | ||
RUN apt-get update | ||
|
||
# install qt5 or qt6 (qt6 is not available on ubuntu focal and debian buster) | ||
# on debian bullseye add backports to install qt6 | ||
|
@@ -128,4 +128,4 @@ RUN chmod +x /usr/bin/qemu-static | |
RUN apt-get clean -q -y && apt-get autoremove -y && rm -rf /var/lib/apt/lists/* | ||
|
||
# set entrypoint | ||
ENTRYPOINT [ "/usr/bin/qemu-static" ] | ||
ENTRYPOINT [ "/usr/bin/qemu-static", "/usr/bin/env", "QEMU_EXECVE=1" ] |