mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-27 20:16:31 +00:00
Unused. This should not affect anything, and I didnt actually bump the kernel version; am working on te build in CI for this... Signed-off-by: Justin Cormack <justin.cormack@docker.com>
24 lines
305 B
Docker
24 lines
305 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 \
|
|
tar \
|
|
xz \
|
|
&& true
|