17 lines
550 B
Docker
17 lines
550 B
Docker
FROM ubuntu:16.04
|
|
|
|
WORKDIR /build
|
|
|
|
RUN apt-get update && apt-get install -y git g++ make libncurses5-dev subversion libssl-dev gawk libxml-parser-perl \
|
|
unzip wget python xz-utils vim zlibc zlib1g zlib1g-dev openjdk-8-jdk build-essential ccache gettext \
|
|
xsltproc openssh-server && apt-get clean
|
|
|
|
RUN git clone https://github.com/hi-wooya/openwrt-hiwooya.git
|
|
|
|
WORKDIR /build/openwrt-hiwooya
|
|
|
|
RUN ./scripts/feeds update -a && ./scripts/feeds install -a
|
|
|
|
RUN rm -f /build/openwrt-hiwooya/.config
|
|
VOLUME /build/openwrt-hiwooya/.config
|