diff --git a/Dockerfile b/Dockerfile index 96fae2b..06bf6ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +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 FROM alpine:3.16 @@ -32,6 +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/ EXPOSE 69/udp