Initial commit

This commit is contained in:
Bad Manners 2024-10-01 20:05:08 -03:00 committed by Eric Rodrigues Pires
commit 7abd08dbff
6 changed files with 1393 additions and 0 deletions

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM rust:1.81.0-alpine3.20 AS builder
RUN apk add --no-cache musl-dev libressl-dev
WORKDIR /usr/src/app
COPY . .
RUN cargo build --release
FROM alpine:3.20
COPY --from=builder /usr/src/app/target/release/sish_games /usr/local/bin/sish_games
ENTRYPOINT [ "sish_games" ]