Files
stoatchat/crates/bonfire/Dockerfile
2024-09-29 15:10:12 +01:00

11 lines
240 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-bonfire ./
EXPOSE 14703
USER nonroot
CMD ["./revolt-bonfire"]