Update 'Dockerfile'
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Jack Hadrill 2022-08-09 15:29:35 +00:00
parent f024ded895
commit 16fff8069b
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ COPY embed.ipxe /build/
RUN make -j8 bin/undionly.kpxe EMBED=/build/embed.ipxe 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.kpxe EMBED=/build/embed.ipxe
RUN make -j8 bin/ipxe.lkrn 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 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/undionly.kpxe /tftp/
COPY --from=build-ipxe /build/ipxe/src/bin/ipxe.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.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 EXPOSE 69/udp