Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions docker/buildmaster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN git checkout $APK_TOOLS_COMMIT
RUN make -j$(nproc) static


FROM debian:11
FROM debian:13
LABEL maintainer="OpenWrt Maintainers"

ARG DEBIAN_FRONTEND=noninteractive
Expand All @@ -41,8 +41,9 @@ RUN \
build-essential \
gawk \
git-core \
gnupg \
gosu \
libncurses5-dev \
libncurses-dev \
locales \
pv \
pwgen \
Expand All @@ -65,7 +66,8 @@ RUN \
"buildbot-grid-view==$BUILDBOT_VERSION" \
"buildbot-worker==$BUILDBOT_VERSION" \
pyOpenSSL \
service_identity
service_identity \
legacy-cgi

RUN \
sed -i \
Expand Down
10 changes: 7 additions & 3 deletions docker/buildworker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:11
FROM debian:13
LABEL maintainer="OpenWrt Maintainers"

ARG DEBIAN_FRONTEND=noninteractive
Expand All @@ -24,10 +24,11 @@ RUN \
gcc-multilib \
genisoimage \
git-core \
gnupg \
gosu \
libdw-dev \
libelf-dev \
libncurses5-dev \
libncurses-dev \
locales \
pv \
pwgen \
Expand All @@ -39,6 +40,7 @@ RUN \
qemu-utils \
rsync \
signify-openbsd \
shfmt \
subversion \
swig \
unzip \
Expand All @@ -54,7 +56,9 @@ RUN pip3 install \
"buildbot-worker==$BUILDBOT_VERSION" \
pyelftools \
pyOpenSSL \
service_identity
service_identity \
legacy-cgi


ENV LANG=en_US.utf8

Expand Down
Loading