Initial commit
This commit is contained in:
commit
7abd08dbff
6 changed files with 1393 additions and 0 deletions
9
Dockerfile
Normal file
9
Dockerfile
Normal 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" ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue