mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-12 19:41:40 +00:00
This is a minimal standalone statically linked shell for use for now in converting images to containers. Plan to phase it out and replace with actual programs later. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
27 lines
336 B
Docker
27 lines
336 B
Docker
FROM alpine:3.4
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add \
|
|
alpine-sdk \
|
|
argp-standalone \
|
|
automake \
|
|
bash \
|
|
bc \
|
|
cmake \
|
|
curl \
|
|
gmp-dev \
|
|
groff \
|
|
installkernel \
|
|
kmod \
|
|
linux-headers \
|
|
ncurses-dev \
|
|
perl \
|
|
sed \
|
|
squashfs-tools \
|
|
syslinux \
|
|
unzip \
|
|
util-linux-dev \
|
|
vim \
|
|
xz \
|
|
&& true
|