23 lines
369 B
Docker
Raw Normal View History

FROM debian:stretch
MAINTAINER Jessie Frazelle <jess@linux.com>
RUN apt-get update && apt-get install -y \
ca-certificates \
curl \
git \
kernel-package \
make \
libncurses5-dev \
libssl-dev \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
2015-04-15 14:07:02 -07:00
ENV HOME /root
WORKDIR $HOME
ENV JOBS 4
2015-04-15 14:07:02 -07:00
COPY install_kernel /usr/local/bin/install_kernel
2015-02-06 12:57:15 -08:00
CMD [ "bash" ]