orogene 0.3.34

`node_modules/` package manager and utility toolkit.
Documentation
1
2
3
4
5
6
7
FROM rust:1-bookworm as builder
WORKDIR /usr/src/orogene
COPY . .
RUN cargo install --path .
FROM scratch
COPY --from=builder /usr/src/orogene/target/release/oro /oro
CMD ["oro"]