The point of this is to separate dockerfiles and build them on top of each other wherever possible. Then we can build them interdependently with makefiles!
10 lines
141 B
Docker
10 lines
141 B
Docker
FROM builder
|
|
|
|
USER buildbot
|
|
|
|
WORKDIR /builder/openwrt
|
|
|
|
RUN git clone https://git.laboratoryb.org/hurricos/openwrt-mirror --branch master .
|
|
|
|
|