Spaces:
Running
Running
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"] | |