Files
handmade-revolt-backend/crates/delta/Dockerfile
2024-12-13 15:40:04 -08:00

14 lines
336 B
Docker

# Build Stage
FROM ghcr.io/revoltchat/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-delta ./
COPY --from=debian /usr/bin/uname /usr/bin/uname
EXPOSE 8000
ENV ROCKET_ADDRESS 0.0.0.0
USER nonroot
CMD ["./revolt-delta"]