mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-05-06 08:36:53 -04:00
15 lines
438 B
Docker
15 lines
438 B
Docker
# Build Stage
|
|
FROM ghcr.io/stoatchat/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-autumn ./
|
|
COPY --from=mwader/static-ffmpeg:7.0.2 /ffmpeg /usr/local/bin/
|
|
COPY --from=mwader/static-ffmpeg:7.0.2 /ffprobe /usr/local/bin/
|
|
COPY --from=debian /usr/bin/uname /usr/bin/uname
|
|
|
|
EXPOSE 14704
|
|
USER nonroot
|
|
CMD ["./revolt-autumn"]
|