diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-05-12 15:21:19 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-05-12 15:21:19 +0200 |
commit | 891595b9307eb2695411d8e32e4addd9cd927ec8 (patch) | |
tree | b24c323ad3e09f05ca75386ac8fef38a6fff3e74 /beaglebone/Containerfile | |
parent | 6926a88695ce2e9fca51e01a1bf6fded3e4cbcca (diff) |
rename folders
Diffstat (limited to 'beaglebone/Containerfile')
-rw-r--r-- | beaglebone/Containerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/beaglebone/Containerfile b/beaglebone/Containerfile new file mode 100644 index 0000000..cc368d8 --- /dev/null +++ b/beaglebone/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 + |