go-fish-game-server 0.3.0

A WebSocket game server for the Go Fish card game, supporting human players and bots.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM rust:bullseye AS builder
ARG VERSION
RUN cargo install go-fish-game-server --version $VERSION --locked

FROM debian:12-slim AS runtime

COPY --from=builder /usr/local/cargo/bin/go-fish-game-server go-fish-game-server
COPY build/config.toml config.toml

# Run as non-root (optional but recommended)
USER 1001:1001

ENTRYPOINT ["./go-fish-game-server", "--config", "config.toml"]