reform2_mkkernel/Dockerfile
Yorick Barbanneau 668d612b03 Download kernel sources from kernel.org
Add dependencies (curl, gpg, dirmngr)

anf check gpg signature
2021-04-28 01:01:17 +02:00

24 lines
647 B
Docker

FROM debian:bullseye-slim
RUN apt update \
&& apt install -y --no-install-recommends \
gcc-aarch64-linux-gnu \
make \
bc \
device-tree-compiler \
build-essential \
bison \
flex \
bash \
git \
ca-certificates \
curl \
gpg \
dirmngr
libssl-dev
COPY docker/entrypoint.sh /tmp
COPY src/ /tmp
WORKDIR /tmp
CMD /tmp/entrypoint.sh
CMD bash