-
Notifications
You must be signed in to change notification settings - Fork 10
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
Showing
4 changed files
with
35 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
ARG img_version | ||
FROM pandemonium-frt-base:${img_version} | ||
|
||
RUN dpkg --add-architecture armhf && apt-get update && apt-get install -y -q \ | ||
crossbuild-essential-armhf | ||
|
||
RUN apt-get install -y -q \ | ||
libstdc++-11-dev:armhf libsdl2-dev:armhf libgbm-dev:armhf libsamplerate0-dev:armhf | ||
|
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,9 @@ | ||
ARG img_version | ||
FROM pandemonium-frt-base:${img_version} | ||
|
||
RUN dpkg --add-architecture arm64 && apt-get update && apt-get install -y -q \ | ||
crossbuild-essential-arm64 | ||
|
||
RUN apt-get install -y -q \ | ||
libstdc++-11-dev:arm64 libsdl2-dev:arm64 libgbm-dev:arm64 libsamplerate0-dev:arm64 | ||
|
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,13 @@ | ||
|
||
FROM debian:bookworm | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN apt-get update && apt-get upgrade -y && \ | ||
apt-get install --no-install-recommends -y -q \ | ||
git-core vim-nox wget less nvi tmux lynx | ||
|
||
RUN apt-get install -y -q \ | ||
build-essential clang llvm lld python3-pip cmake ninja-build scons meson | ||
|
||
|
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