hf-mcp-file / Dockerfile
XciD's picture
XciD HF Staff
Upload 5 files
61bcaab verified
FROM rust:1.88 AS rust-builder
RUN apt-get update && apt-get install -y libssl-dev
WORKDIR /usr/src/app
COPY . .
# Build the Rust application with static linking
RUN cargo build --release
ENTRYPOINT ["/usr/src/app/target/release/hf-file-mcp"]