swactor/Dockerfile
Claude 8e18dc4714 refactor: consolidate crates
Crates continued to grow in number, but most are still quite small and feature specific. This refactor consolidates them.
2026-02-14 00:32:19 +07:00

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"]