Files
mop3/Dockerfile
kamkow1 955dbc7614
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m16s
Use LLVM linker, Dockerfile now works without GCC
2026-03-07 10:41:35 +01:00

13 lines
220 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 . .
RUN ./aux/devel.sh
FROM scratch
COPY --from=builder /usr/src/MOP3/mop3.iso /mop3.iso