mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-12 19:31:48 +00:00
- make, GNU tar only used for self hosting - strace, ipvsadmin, openssl just for debug Signed-off-by: Justin Cormack <justin.cormack@docker.com>
28 lines
381 B
Docker
28 lines
381 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 \
|
|
jq \
|
|
openrc \
|
|
openssh \
|
|
openssh-client \
|
|
rng-tools@edgecommunity \
|
|
sfdisk \
|
|
sysklogd \
|
|
xz \
|
|
&& true
|