mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-19 02:49:16 +00:00
- switch to libressl - hvtools in main Note the build images are not switched over yet Signed-off-by: Justin Cormack <justin.cormack@docker.com>
28 lines
369 B
Docker
28 lines
369 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 \
|
|
openssh-client \
|
|
rng-tools@community \
|
|
sfdisk \
|
|
sysklogd \
|
|
xz \
|
|
&& true
|