Skip to content

Commit

Permalink
docker: install kmod
Browse files Browse the repository at this point in the history
When building artifacts in the docker container, the build system
complained about the missing lsmod command. This change adds the
required package to the docker container, so that the command can be
executed as expected.

Signed-off-by: Norbert Manthey <[email protected]>
  • Loading branch information
nmanthey authored and wipawel committed Nov 25, 2020
1 parent e76b44c commit 63d2318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ FROM ubuntu:20.04
RUN apt-get update -y
RUN apt-get install -y gcc make xorriso qemu-utils
# grub is a bit special in containers
RUN DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install grub2 python
RUN DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install grub2 kmod python

CMD ["/bin/bash"]

0 comments on commit 63d2318

Please sign in to comment.