Files
mop3/Dockerfile
kamkow1 5ad5ed824d
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m14s
Dockerfile build debug
2026-03-07 10:45:21 +01: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