mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-03 23:35:10 +00:00
Only needed for build, so save space and avoid security scan errors. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
35 lines
464 B
Docker
35 lines
464 B
Docker
FROM alpine:3.4
|
|
|
|
COPY repositories /etc/apk/
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add --no-cache \
|
|
alpine-conf \
|
|
bind-tools \
|
|
busybox-initscripts \
|
|
chrony \
|
|
cifs-utils \
|
|
curl \
|
|
dhcpcd \
|
|
e2fsprogs \
|
|
e2fsprogs-extra \
|
|
fuse \
|
|
git \
|
|
hvtools@edgetesting \
|
|
iptables \
|
|
jq \
|
|
lvm2 \
|
|
make \
|
|
openrc \
|
|
openssh \
|
|
openssh-client \
|
|
openssl \
|
|
rng-tools@edgecommunity \
|
|
sfdisk \
|
|
strace \
|
|
sysklogd \
|
|
tar \
|
|
xz \
|
|
&& true
|