mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-22 17:55:57 +01:00
9 lines
288 B
Docker
9 lines
288 B
Docker
# https://cirosantilli.com/linux-kernel-module-cheat#docker
|
|
FROM ubuntu:20.04
|
|
COPY setup /
|
|
COPY requirements.txt /
|
|
# https://stackoverflow.com/questions/23513045/how-to-check-if-a-process-is-running-inside-docker-container/65942222#65942222
|
|
ENV LKMC_IN_DOCKER=true
|
|
RUN /setup -y
|
|
CMD bash
|