a bare-bones limbo server in rust (mirror of https://github.com/xoogware/crawlspace)
1FROM docker.io/library/rust:1.82 AS build
2
3WORKDIR /app
4COPY . .
5
6RUN cargo build --profile release-lto --features compression
7
8FROM registry.access.redhat.com/ubi9/ubi-micro
9
10LABEL org.opencontainers.image.source=https://github.com/xoogware/crawlspace
11LABEL org.opencontainers.image.description="a tiny limbo server"
12LABEL org.opencontainers.image.licenses=AGPL-3.0-or-later
13
14WORKDIR /app
15COPY --from=build /app/target/release-lto/crawlspace .
16
17CMD ["/app/crawlspace"]