mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 05:26:59 +00:00
12 lines
294 B
Docker
12 lines
294 B
Docker
# Build Stage
|
|
FROM ghcr.io/revoltchat/base:latest AS builder
|
|
|
|
# Bundle Stage
|
|
FROM debian:bullseye-slim
|
|
RUN apt-get update && \
|
|
apt-get install -y ca-certificates && \
|
|
apt-get clean
|
|
COPY --from=builder /home/rust/src/target/release/revolt-bonfire ./
|
|
EXPOSE 9000
|
|
CMD ["./revolt-bonfire"]
|