1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
FROM rust:1.90 AS builder WORKDIR /app COPY . . RUN cargo build --release --target-dir target FROM scratch WORKDIR /app COPY --from=builder /app/target/release/oxigraph_web /app/oxigraph_web EXPOSE 8080 CMD ["/app/oxigraph_web"]