Skip to content

Commit 19a128a

Browse files
Fix kernel builds:
The `debian:stable` container image, combined with the packages we install for building the kernel, doesn't include `Make` anymore, so we explicitly add it. Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>
1 parent 82e48f8 commit 19a128a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ENV DEBIAN_FRONTEND=noninteractive
33

44
# crossbuild-essentials are pretty heavy; here we install for both architecures to maximize Docker layer hit cache rate during development, but only one will be used
55
RUN set -x && apt -o "Dpkg::Use-Pty=0" -y update && \
6-
apt -o "Dpkg::Use-Pty=0" -y install curl xz-utils gnupg2 flex bison libssl-dev libelf-dev bc libncurses-dev kmod \
6+
apt -o "Dpkg::Use-Pty=0" -y install curl xz-utils gnupg2 flex bison libssl-dev libelf-dev bc libncurses-dev kmod make \
77
crossbuild-essential-amd64 crossbuild-essential-arm64 && \
88
apt -o "Dpkg::Use-Pty=0" -y clean
99

0 commit comments

Comments
 (0)