Files
linuxkit/base/alpine-build-kernel/Dockerfile
Justin Cormack 5112209050 alpine-build-c is only used for kernel builds so rename
Also remove some unecessary packages.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2017-02-13 16:59:38 +00:00

25 lines
318 B
Docker

FROM alpine:3.5
RUN \
apk update && apk upgrade && \
apk add \
build-base \
argp-standalone \
automake \
bash \
bc \
binutils-dev \
curl \
git \
gmp-dev \
installkernel \
kmod \
libelf-dev \
linux-headers \
ncurses-dev \
sed \
squashfs-tools \
syslinux \
tar \
xz \
&& true