Update Dockerfile.lede

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

View File

@ -5,11 +5,11 @@ ENV FORCE_UNSAFE_CONFIGURE=1
# https://openwrt.org/docs/guide-developer/toolchain/install-buildsystem
RUN echo $(nproc) && \
apt update && \
apt update > /dev/null && \
apt install -y -qq build-essential clang flex bison g++ gawk gcc-multilib g++-multilib \
gettext git libncurses5-dev libssl-dev python3-distutils rsync unzip \
zlib1g-dev file wget > /dev/null && \
apt clean && \
apt clean > /dev/null && \
rm -rf /var/lib/apt/list/*
WORKDIR /licsber
@ -28,4 +28,4 @@ RUN cd lede && \
./scripts/feeds update -a && \
./scripts/feeds install -a
CMD ['/usr/bin/env', 'bash']
CMD ['bash']