Files
linux-kernel-module-cheat/Dockerfile
Ciro Santilli 六四事件 法轮功 a06872241b the docker setup is perfect
2018-11-11 00:00:02 +00:00

11 lines
256 B
Docker

# https://github.com/cirosantilli/linux-kernel-module-cheat#docker
FROM ubuntu:18.04
RUN apt update
# Minimum requirements to run ./build --download-dependencies
RUN apt-get install -y \
git \
python3 \
python3-distutils \
;
CMD bash