Files
stoatchat/crates/services/gifbox/Dockerfile
2025-09-19 02:50:00 +01:00

11 lines
238 B
Docker

# Build Stage
FROM ghcr.io/revoltchat/base:latest AS builder
# Bundle Stage
FROM gcr.io/distroless/cc-debian12:nonroot
COPY --from=builder /home/rust/src/target/release/revolt-gifbox ./
EXPOSE 14706
USER nonroot
CMD ["./revolt-gifbox"]