mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-08-31 01:20:30 +00:00
14 lines
340 B
Docker
14 lines
340 B
Docker
# Build Stage
|
|
ARG BASE_IMAGE=ghcr.io/stoatchat/base:latest
|
|
FROM $BASE_IMAGE 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-bonfire ./
|
|
COPY --from=debian /usr/bin/uname /usr/bin/uname
|
|
|
|
EXPOSE 14703
|
|
USER nonroot
|
|
CMD ["./revolt-bonfire"]
|