Files
linuxkit/alpine/base/alpine-base/Dockerfile
Justin Cormack db3cbe2eb2 Simplify file system format code
- use our own code rather than Alpine setup-disk
- remove alpine setup code as not needed
- do not create swap partitions
- create swap file on desktop editions for now (may remove)

Fix #619

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-11-21 18:35:13 +00:00

33 lines
442 B
Docker

FROM alpine:3.4
COPY repositories /etc/apk/
RUN \
apk update && apk upgrade && \
apk add --no-cache \
busybox-initscripts \
chrony \
cifs-utils \
curl \
dhcpcd \
e2fsprogs \
e2fsprogs-extra \
fuse \
git \
hvtools@nextmain \
iptables \
ipvsadm@nextmain \
jq \
make \
openrc \
openssh \
openssh-client \
openssl \
rng-tools@edgecommunity \
sfdisk \
strace \
sysklogd \
tar \
xz \
&& true