cheshire_chess 0.2.0

A terminal chess app — tactics training, live multiplayer, game rooms, and custom pieces
Documentation
1
2
3
4
5
6
7
8
9
10
FROM rust:1.87 AS builder
WORKDIR /app
COPY . .
RUN cargo build --release --bin cheshire-tracker --bin cheshire-server

FROM debian:bookworm-slim
COPY --from=builder /app/target/release/cheshire-tracker /usr/local/bin/
COPY --from=builder /app/target/release/cheshire-server /usr/local/bin/
EXPOSE 7879 7880
CMD ["sh", "-c", "cheshire-server & cheshire-tracker"]