robopoker 0.1.0

Implementations of Meta's Pluribus No-Limit Texas Hold-Em solution.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Build stage
FROM rust:1.80 AS builder
WORKDIR /usr/src/robopoker
COPY . .
RUN cargo build --release

# Binary stage
FROM debian:bookworm-slim AS binary
RUN apt-get update && \
    apt-get install -y libssl3 ca-certificates && \
    rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/src/robopoker/target/release/robopoker /usr/local/bin/robopoker
ENTRYPOINT ["robopoker"]