-
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.
Support again Debian Buster armv6 (#13)
- Loading branch information
1 parent
4d2db23
commit de19a64
Showing
3 changed files
with
63 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
ARG DIST="debian" | ||
ARG SUITE="buster" | ||
ARG REPOSITORY="https://github.com/hyperion-project" | ||
|
||
FROM balenalib/raspberry-pi:buster-build | ||
|
||
ARG REPOSITORY | ||
ARG TARGETPLATFORM | ||
|
||
LABEL maintainer="Hyperion Project <admin@hyperion-project.org>" \ | ||
org.opencontainers.image.title="Debian Buster ${TARGETPLATFORM}" \ | ||
org.opencontainers.image.description="Compilation environment to build Hyperion for Debian Buster" \ | ||
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" | ||
|
||
# install deps | ||
RUN install_packages \ | ||
git \ | ||
python3-dev \ | ||
qtbase5-dev \ | ||
libqt5serialport5-dev \ | ||
libqt5sql5-sqlite \ | ||
libqt5svg5-dev \ | ||
build-essential \ | ||
libusb-1.0-0-dev \ | ||
libcec-dev \ | ||
libavahi-core-dev \ | ||
libavahi-compat-libdnssd-dev \ | ||
zlib1g-dev \ | ||
libraspberrypi-dev \ | ||
libssl1.0-dev \ | ||
libasound2-dev \ | ||
libjpeg-dev \ | ||
libturbojpeg0-dev \ | ||
libftdi1-dev && \ | ||
cmake=3.13.4-1 && \ | ||
apt-get clean -q -y && \ | ||
apt-get autoremove -y && \ | ||
rm -rf /var/lib/apt/lists/* |
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