mirror of
https://github.com/cusspvz/openwrt-builder.docker
synced 2025-07-11 08:28:35 +00:00
16 lines
497 B
Docker
16 lines
497 B
Docker
FROM package-builder
|
|
LABEL MAINTAINER "Jose Moreira <josemoreiravarzim@gmail.com>"
|
|
|
|
RUN ./scripts/feeds install bzip2
|
|
RUN ./scripts/feeds install zlib
|
|
RUN ./scripts/feeds install openzwave
|
|
RUN ./scripts/feeds install python
|
|
RUN ./scripts/feeds install perl
|
|
RUN ./scripts/feeds install node
|
|
RUN make defconfig;
|
|
RUN make package/bzip2/compile
|
|
RUN make package/zlib/compile
|
|
RUN make package/openzwave/compile
|
|
RUN make package/python/compile
|
|
RUN make package/perl/compile
|
|
RUN make package/node/compile |