vegas 0.9.0

Feature-rich atomistic magnetic material simulation platform.
Documentation
1
2
3
4
5
6
7
8
9
FROM rust:1.90-bookworm AS builder

WORKDIR /usr/src/vegas
COPY . .
RUN cargo install --path .

FROM debian:bookworm
COPY --from=builder /usr/local/cargo/bin/vegas /usr/local/bin/vegas
CMD [ "vegas" ]