-
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
e07f867
commit 52a34db
Showing
4 changed files
with
62 additions
and
51 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 |
---|---|---|
|
@@ -9,18 +9,11 @@ ARG SUITE | |
ARG QT_VERSION | ||
ARG REPOSITORY | ||
ARG CMAKE_VERSION | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
ARG TARGETPLATFORM | ||
|
||
LABEL maintainer="Hyperion Project <[email protected]>" \ | ||
org.opencontainers.image.title="Debian ${SUITE} ${TARGETPLATFORM} - QT ${QT_VERSION}" \ | ||
org.opencontainers.image.description="Compilation environment to build Hyperion for Debian ${SUITE}" \ | ||
org.opencontainers.image.url="${REPOSITORY}" \ | ||
org.opencontainers.image.source="${REPOSITORY}/hyperion.docker-ci" \ | ||
org.opencontainers.image.vendor="Hyperion Project" \ | ||
org.opencontainers.image.documentation="https://docs.hyperion-project.org" \ | ||
org.opencontainers.image.licenses="MIT" | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
ENV QEMU_EXECVE=1 | ||
ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/arm/v6} | ||
|
||
# update | ||
RUN apt-get update | ||
|
@@ -80,4 +73,4 @@ RUN curl -kL https://github.com/balena-io/qemu/releases/download/v7.0.0%2Bbalena | |
RUN chmod +x /usr/bin/qemu-static | ||
|
||
# set entrypoint | ||
ENTRYPOINT [ "/usr/bin/qemu-static", "/usr/bin/env", "QEMU_EXECVE=1" ] | ||
ENTRYPOINT [ "/usr/bin/qemu-static" ] |
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 |
---|---|---|
|
@@ -13,15 +13,7 @@ ARG REPOSITORY | |
ARG CMAKE_VERSION | ||
ARG TARGETPLATFORM | ||
|
||
LABEL maintainer="Hyperion Project <[email protected]>" \ | ||
org.opencontainers.image.title="${DIST} ${SUITE} ${TARGETPLATFORM} - QT ${QT_VERSION}" \ | ||
org.opencontainers.image.description="Compilation environment to build Hyperion for ${DIST} ${SUITE}" \ | ||
org.opencontainers.image.url="${REPOSITORY}" \ | ||
org.opencontainers.image.source="${REPOSITORY}/hyperion.docker-ci" \ | ||
org.opencontainers.image.vendor="Hyperion Project" \ | ||
org.opencontainers.image.documentation="https://docs.hyperion-project.org" \ | ||
org.opencontainers.image.licenses="MIT" | ||
|
||
ENV QEMU_EXECVE=1 | ||
ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64} | ||
|
||
# update | ||
|
@@ -91,4 +83,4 @@ fi | |
RUN chmod +x /usr/bin/qemu-static | ||
|
||
# set entrypoint | ||
ENTRYPOINT [ "/usr/bin/qemu-static", "/usr/bin/env", "QEMU_EXECVE=1" ] | ||
ENTRYPOINT [ "/usr/bin/qemu-static" ] |
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ ARG SUITE="buster" | |
ARG QT_VERSION="5" | ||
ARG REPOSITORY="https://github.com/hyperion-project" | ||
ARG CMAKE_VERSION="3.28.3" | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
FROM ${DIST}:${SUITE} | ||
|
||
|
@@ -11,23 +12,14 @@ ARG SUITE | |
ARG QT_VERSION | ||
ARG REPOSITORY | ||
ARG CMAKE_VERSION | ||
ARG DEBIAN_FRONTEND | ||
ARG TARGETPLATFORM | ||
|
||
LABEL maintainer="Hyperion Project <[email protected]>" \ | ||
org.opencontainers.image.title="${DIST} ${SUITE} ${TARGETPLATFORM} - QT ${QT_VERSION}" \ | ||
org.opencontainers.image.description="Compilation environment to build Hyperion for ${DIST} ${SUITE}" \ | ||
org.opencontainers.image.url="${REPOSITORY}" \ | ||
org.opencontainers.image.source="${REPOSITORY}/hyperion.docker-ci" \ | ||
org.opencontainers.image.vendor="Hyperion Project" \ | ||
org.opencontainers.image.documentation="https://docs.hyperion-project.org" \ | ||
org.opencontainers.image.licenses="MIT" | ||
|
||
ENV QEMU_EXECVE=1 | ||
ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64} | ||
ENV DEBFULLNAME="Hyperion Project" | ||
ENV DEBEMAIL="[email protected]" | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
# update | ||
RUN apt-get update | ||
|
||
|
@@ -128,4 +120,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", "/usr/bin/env", "QEMU_EXECVE=1" ] | ||
ENTRYPOINT [ "/usr/bin/qemu-static" ] |