mirror of
https://github.com/edera-dev/sprout.git
synced 2026-08-05 23:11:04 +00:00
7 lines
250 B
Docker
7 lines
250 B
Docker
FROM alpine:3.24@sha256:28bd5fe8b56d1bd048e5babf5b10710ebe0bae67db86916198a6eec434943f8b AS build
|
|
ARG TARGETPLATFORM
|
|
RUN apk add --no-cache xen-hypervisor && cp /usr/lib/efi/xen.efi /xen.efi
|
|
|
|
FROM scratch AS final
|
|
COPY --from=build /xen.efi /xen.efi
|