From 16fff8069b7017d4a7c37979bc7a6059c4d48765 Mon Sep 17 00:00:00 2001 From: Jack Hadrill Date: Tue, 9 Aug 2022 15:29:35 +0000 Subject: [PATCH] Update 'Dockerfile' --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 06bf6ce..290b018 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ COPY embed.ipxe /build/ RUN make -j8 bin/undionly.kpxe EMBED=/build/embed.ipxe RUN make -j8 bin/ipxe.kpxe EMBED=/build/embed.ipxe RUN make -j8 bin/ipxe.lkrn EMBED=/build/embed.ipxe -RUN make -j8 bin/ipxe.efi EMBED=/build/embed.ipxe +RUN make -j8 make bin-x86_64-efi/ipxe.efi EMBED=/build/embed.ipxe FROM alpine:3.16 @@ -33,7 +33,7 @@ tftp-root=/tftp\ COPY --from=build-ipxe /build/ipxe/src/bin/undionly.kpxe /tftp/ COPY --from=build-ipxe /build/ipxe/src/bin/ipxe.kpxe /tftp/ COPY --from=build-ipxe /build/ipxe/src/bin/ipxe.lkrn /tftp/ -COPY --from=build-ipxe /build/ipxe/src/bin/ipxe.efi /tftp/ +COPY --from=build-ipxe /build/ipxe/src/bin-x86_64-efi/ipxe.efi /tftp/ EXPOSE 69/udp