Crates continued to grow in number, but most are still quite small and feature specific. This refactor consolidates them. Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
8 lines
244 B
Docker
8 lines
244 B
Docker
FROM rust:1.93-slim AS builder
|
|
WORKDIR /build
|
|
COPY . .
|
|
RUN cargo build --release -p runtime-dashboard --features node
|
|
|
|
FROM debian:bookworm-slim
|
|
COPY --from=builder /build/target/release/swactor-node /usr/local/bin/
|
|
ENTRYPOINT ["swactor-node"]
|