diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-05-11 17:44:19 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-05-11 17:44:19 +0200 |
commit | 11181adc990dd71f7c7c27b0486bd05744654a33 (patch) | |
tree | 6e4839f234c7b6a349cbab21cd461be7a2fc0ee5 /2/Containerfile | |
parent | 159f34a6637ad2685748e34ab904f8ad95c5073e (diff) |
WIP container cross-compile builds (dropped)
Diffstat (limited to '2/Containerfile')
-rw-r--r-- | 2/Containerfile | 13 |
1 files changed, 13 insertions, 0 deletions
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 + |