adlin-tuto1 img

This commit is contained in:
nemunaire 2019-02-28 07:44:28 +01:00
parent a79383b263
commit 4ca1c4c3ca
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,25 @@
FROM alpine AS mirror
RUN mkdir -p /out/etc/apk/ && \
cp /etc/apk/repositories /out/etc/apk/ && \
cp -r /etc/apk/keys /out/etc/apk/keys
RUN apk add --no-cache --initdb -p /out \
alpine-baselayout \
busybox \
ca-certificates \
curl \
debootstrap \
e2fsprogs \
htop \
iproute2 \
musl \
nano \
tini \
util-linux \
wireguard-tools-wg
FROM scratch
COPY --from=mirror /out/ /

View File

@ -0,0 +1 @@
image: adlin-tuto1