openwrt/.buildbot/openwrt/Dockerfile

25 lines
964 B
Docker
Raw Normal View History

2022-12-16 15:47:27 +00:00
FROM ubuntu:focal
2023-01-02 06:09:42 +00:00
ENV OPENWRT_VERSION=22.03.2
2022-12-16 15:47:27 +00:00
RUN apt -y update
2022-12-19 07:01:47 +00:00
RUN DEBIAN_FRONTEND=noninteractive TZ=UTC \
apt -yq install \
2022-12-19 06:56:18 +00:00
build-essential rsync git-core subversion mercurial libssl-dev \
libncurses5-dev unzip gawk zlib1g-dev libncursesw5-dev zlib1g-dev \
gettext xsltproc wget unzip python python3-distutils rxvt-unicode
2023-01-02 06:09:42 +00:00
RUN mkdir /Downloads
RUN wget -qP /Downloads \
"https://downloads.openwrt.org/releases/${OPENWRT_VERSION}/targets/bcm27xx/bcm2711/openwrt-imagebuilder-${OPENWRT_VERSION}-bcm27xx-bcm2711.Linux-x86_64.tar.xz"
RUN wget -qP /Downloads \
"https://downloads.openwrt.org/releases/${OPENWRT_VERSION}/targets/bcm27xx/bcm2711/openwrt-sdk-${OPENWRT_VERSION}-bcm27xx-bcm2711_gcc-11.2.0_musl.Linux-x86_64.tar.xz"
RUN wget -qP /Downloads \
"https://downloads.openwrt.org/releases/${OPENWRT_VERSION}/targets/bcm27xx/bcm2711/openwrt-toolchain-${OPENWRT_VERSION}-bcm27xx-bcm2711_gcc-11.2.0_musl.Linux-x86_64.tar.xz"
ADD . .