Files
mop3/Dockerfile.localdev
kamkow1 342f39b748
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 40s
Build documentation / build-and-deploy (push) Successful in 26s
Use static buffers for mprintf and debug_printf, cut down on library dependencies
2026-04-03 20:49:07 +02:00

15 lines
232 B
Docker

FROM ubuntu:latest AS builder
RUN apt-get update && apt-get -y install clang llvm lld make xorriso
WORKDIR /usr/src/MOP3
COPY . .
ARG bt
RUN ./aux/devel.sh $bt
FROM scratch
COPY --from=builder /usr/src/MOP3/mop3.iso /mop3.iso