Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
oxigraph/wikibase/Dockerfile

13 lines
367 B

FROM rust:1-buster as builder
RUN apt-get update && \
apt-get install clang -y && \
git clone https://github.com/oxigraph/oxigraph --depth 1 && \
cd oxigraph && \
cargo build --release
FROM debian:buster-slim
COPY --from=builder /oxigraph/target/release/oxigraph_wikibase /usr/local/bin/oxigraph_wikibase
ENTRYPOINT [ "/usr/local/bin/oxigraph_wikibase" ]