Files
mop3/Dockerfile.localdev
kamkow1 2c21eec5e9
Some checks failed
Build ISO image / build-and-deploy (push) Failing after 0s
Build documentation / build-and-deploy (push) Failing after 0s
ci Use custom container image
2026-04-03 19:31:19 +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