blob: cc368d8aff2bb0f8673d10c8d2930da502512f18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|