Build via docker
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m27s

This commit is contained in:
2026-03-07 03:49:35 +01:00
parent dbef1787ec
commit bc5b04d809
3 changed files with 26 additions and 14 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM ubuntu:latest AS builder
RUN apt-get update && apt-get -y install clang llvm lld make xorriso gcc
WORKDIR /usr/src/MOP3
COPY . .
RUN ./aux/devel.sh
FROM scratch
COPY --from=builder /usr/src/MOP3/mop3.iso /mop3.iso