Files
stoatchat/crates/daemons/searchd/Dockerfile
Zomatree b3e4e93e20 chore: update docker scripts
Signed-off-by: Zomatree <me@zomatree.live>
2026-08-08 05:23:44 +01:00

11 lines
299 B
Docker

# Build Stage
FROM ghcr.io/stoatchat/base:latest AS builder
FROM debian:12 AS debian
# Bundle Stage
FROM gcr.io/distroless/cc-debian12:nonroot
COPY --from=builder /home/rust/src/target/release/revolt-searchd ./
COPY --from=debian /usr/bin/uname /usr/bin/uname
USER nonroot
CMD ["./revolt-searchd"]