Files
linuxkit/alpine/base/alpine-base/Dockerfile
Justin Cormack 30f14dd622 Remove ssh server packages
These will be containerised, and were disabled anyway.

Need client, as git needs it, and docker needs git.

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

27 lines
357 B
Docker

FROM alpine:edge
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 \
iptables \
jq \
openrc \
openssh-client \
rng-tools@community \
sfdisk \
sysklogd \
xz \
&& true