multi-track leveling system + user say command

This commit is contained in:
2025-12-17 18:44:02 +05:30
parent b22a1c6fee
commit 07f101a119
13 changed files with 4936 additions and 45 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM rust:latest as builder
WORKDIR /usr/src/void-sentinel
COPY . .
RUN cargo build --release --bin void-sentinel
RUN strip target/release/void-sentinel -o /usr/local/bin/void-sentinel
FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y ca-certificates tzdata && rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/local/bin/void-sentinel /usr/local/bin/void-sentinel
RUN groupadd -g 1001 appgroup && useradd -u 1001 -g appgroup -s /bin/false -m appuser
USER appuser
WORKDIR /app
CMD ["/usr/local/bin/void-sentinel"]