9 lines
No EOL
282 B
Docker
9 lines
No EOL
282 B
Docker
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/auth_ssh_games /usr/local/bin/auth_ssh_games
|
|
ENTRYPOINT [ "auth_ssh_games" ] |