FROM rust:1-buster as builder RUN apt-get update && apt-get install clang -y COPY . /oxigraph RUN cd /oxigraph/server && cargo build --release FROM debian:buster-slim COPY --from=builder /oxigraph/target/release/oxigraph_server /usr/local/bin/oxigraph_server ENTRYPOINT [ "/usr/local/bin/oxigraph_server" ]