Files
gravel/Dockerfile
Kerdonov be58e2eb79
Some checks failed
Test the running changes / Test (push) Successful in 1m51s
Build and push Docker image / build (push) Has been cancelled
testing build workflow
2025-11-15 02:09:17 +02:00

10 lines
185 B
Docker

FROM rust:1.91.1-bookworm AS builder
WORKDIR /app
COPY . .
RUN cargo build --release
FROM debian:12-slim
WORKDIR /app
COPY --from=builder /app/target/release/stdsrv .
CMD ["./stdsrv"]