Adding more functions to docker image

This commit is contained in:
Fabio Belavenuto 2022-07-13 16:24:27 -03:00
parent d3580ee40b
commit 917075511a
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ ENV SHELL=/bin/bash \
RUN apt update --yes && \
apt install --yes --no-install-recommends --no-install-suggests \
nano curl bc kmod \
ca-certificates nano curl bc kmod git \
build-essential make ncurses-dev libssl-dev autogen automake pkg-config libtool xsltproc gperf && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

View File

@ -71,7 +71,7 @@ if [ $# -lt 1 ]; then
exit 1
fi
case $1 in
bash) bash -l ;;
bash) shift; bash -l $@ ;;
compile-module) compile-module $2 ;;
compile-lkm) compile-lkm $2 ;;
compile-drivers) compile-drivers ;;