Files
linuxkit/alpine/base/alpine-build-c/Dockerfile
Justin Cormack f7fcdc5776 Add base image for mksh
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>
2016-12-08 15:58:51 -08:00

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