Dockerfile/openwrt/lede/x86/Dockerfile.openwrt-lede-x86

19 lines
420 B
Docker
Raw Normal View History

FROM registry.cn-beijing.aliyuncs.com/licsber/github:openwrt-lede-env
2024-03-08 06:34:34 +08:00
LABEL org.opencontainers.image.authors="licsber<admin@licsber.site>"
ENV FORCE_UNSAFE_CONFIGURE=1
WORKDIR /licsber/lede
2024-03-08 06:34:34 +08:00
COPY openwrt.lede.x86.config .config
RUN ./scripts/feeds update -a && \
./scripts/feeds install -a
2024-03-08 06:34:34 +08:00
RUN make defconfig && \
make download -j8
2024-03-08 11:10:47 +08:00
RUN echo `nproc` && make -j4 || make -j1 V=s && \
echo $?
CMD ['bash']