public-appservice 0.2.0

An appservice to make Matrix spaces publicly accessible.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM rust:latest AS builder

WORKDIR /app
COPY . .

RUN cargo build 

FROM debian:bookworm-slim
RUN apt-get update && apt install -y openssl

WORKDIR /app

COPY --from=builder /app/target/debug/public-appservice /app/public-appservice

EXPOSE 8989

ENTRYPOINT ["/app/public-appservice"]