pschema-rs 0.0.2

Pregel-based schema validation algorithm written in Rust for generating Wikidata subsets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Use a base image with the latest version of Rust installed
FROM rust:latest

# Set the working directory in the container
WORKDIR /app

# Copy the local application code into the container
COPY . .

# Build the Rust application
RUN cargo build --release --example benchmark

# Specify the command to run when the container starts
CMD ["./target/release/pschema-rs"]