mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-06 03:06:04 +00:00
11 lines
237 B
Docker
11 lines
237 B
Docker
# Build Stage
|
|
FROM ghcr.io/stoatchat/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"]
|