mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-17 01:30:33 +00:00
15 lines
225 B
Docker
15 lines
225 B
Docker
FROM rust:1.88 AS builder
|
|
|
|
WORKDIR /build
|
|
|
|
COPY . .
|
|
|
|
RUN cargo build --release -p rustfs-mcp
|
|
|
|
FROM debian:bookworm-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=builder /build/target/release/rustfs-mcp /app/
|
|
|
|
ENTRYPOINT ["/app/rustfs-mcp"] |