sq 0.5.0

A minimal client-server for phext hosting
1
2
3
4
5
6
7
8
9
10
11
12
FROM rust:1.88 AS builder
WORKDIR /src
COPY . .
RUN cargo build --release --bin sq

FROM debian:bookworm-slim
WORKDIR /exo
# Copy artefact stripped of debug symbols
COPY --from=builder /src/target/release/sq ./sq
COPY ./CYOA.phext ./CYOA.phext
EXPOSE 1337
CMD ["./sq", "host", "1337"]