From 11181adc990dd71f7c7c27b0486bd05744654a33 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Sat, 11 May 2024 17:44:19 +0200 Subject: WIP container cross-compile builds (dropped) --- 2/Containerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 2/Containerfile (limited to '2/Containerfile') diff --git a/2/Containerfile b/2/Containerfile new file mode 100644 index 0000000..cc368d8 --- /dev/null +++ b/2/Containerfile @@ -0,0 +1,13 @@ +from docker.io/library/debian:sid + +run apt-get update + +# packages (in separate steps to optimize caching) +run apt-get install -y gcc-arm-linux-gnueabi +run apt-get install -y gcc +run apt-get install -y make +run apt-get install -y git + +# container directory on which the working directory on host is mounted +workdir /workdir + -- cgit v1.2.3