Update Dockerfile.lede

This commit is contained in:
Jiale Liu 2023-03-17 23:36:03 +08:00 committed by GitHub
parent 16ec126135
commit a9b93d0266
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,18 +14,14 @@ RUN echo $(nproc) && \
WORKDIR /licsber
RUN git clone --depth=1 https://github.com/openwrt/openwrt.git -b openwrt-22.03
RUN git clone --depth=1 https://github.com/coolsnowwolf/lede.git
RUN git clone --depth=1 https://github.com/fw876/helloworld.git && \
cp -r helloworld openwrt/package && \
cp -r helloworld lede/package
RUN cd openwrt && \
./scripts/feeds update -a && \
./scripts/feeds install -a
RUN cd lede && \
./scripts/feeds update -a && \
./scripts/feeds install -a
COPY openwrt-config/lede.x86.config lede/.config
CMD ['bash']