mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-30 14:23:52 +00:00
0eb21735ae accidentally broke some package
builds by switching linuxkit/alpine to linuxkit/containerd. Let's revert
the ones that shouldn't be there.
Closes #1991
Signed-off-by: Tycho Andersen <tycho@docker.com>
13 lines
388 B
Docker
13 lines
388 B
Docker
FROM linuxkit/alpine:630ee558e4869672fae230c78364e367b8ea67a9 AS build
|
|
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
|
|
RUN mkdir -p /out/var/run
|
|
RUN apk add --no-cache --initdb -p /out \
|
|
qemu-guest-agent \
|
|
musl
|
|
FROM scratch
|
|
WORKDIR /
|
|
ENTRYPOINT []
|
|
COPY --from=build /out /
|
|
CMD ["/usr/bin/qemu-ga", "-p", "/dev/vport0p1"]
|
|
LABEL org.mobyproject.config='{"net": "host"}'
|