Dockerfile/Dockerfile.lede
Jiale Liu 4383bb816d
MikeWang000000 patch (#3)
* remove unnecessary sudo

---------

Co-authored-by: Mike Wang <mikewang000000@gmail.com>
Co-authored-by: licsber <admin@licsber.site>
2023-03-17 22:05:54 +08:00

22 lines
762 B
Docker

FROM ubuntu:jammy-20230308
LABEL maintainer=admin@licsber.site
ENV FORCE_UNSAFE_CONFIGURE=1
# https://openwrt.org/docs/guide-developer/toolchain/install-buildsystem
RUN echo $(nproc) && \
apt update && \
apt install -y 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 && \
apt clean && \
rm -rf /var/lib/apt/list/*
WORKDIR /licsber
RUN git clone --depth=1 https://github.com/openwrt/openwrt.git -b openwrt-22.03 && \
git clone --depth=1 https://github.com/coolsnowwolf/lede.git && \
git clone --depth=1 https://github.com/fw876/helloworld.git
CMD ['/usr/bin/env', 'bash']