rambl_rs 0.1.10

An HTTP server framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM rust:1.88.0-alpine AS builder

WORKDIR /app

COPY . .

RUN apk add --no-cache musl-dev gcc
RUN cargo build --release

# Final stage
FROM scratch

EXPOSE 8000
COPY --from=builder /app/target/release/rambl_rs /rambl_rs

# Command to run
CMD ["/rambl_rs"]