Spaces:
Running
Running
File size: 247 Bytes
61bcaab |
1 2 3 4 5 6 7 8 9 10 11 12 |
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"]
|