mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-20 13:23:22 -06:00
13 lines
274 B
Docker
13 lines
274 B
Docker
FROM matrixdotorg/dendrite:latest AS base
|
|
|
|
FROM alpine:latest
|
|
|
|
COPY --from=base /build/bin/dendrite-public-rooms-api-server /usr/bin
|
|
|
|
WORKDIR /etc/dendrite
|
|
|
|
ENTRYPOINT ["/usr/bin/dendrite-public-rooms-api-server", "--config=dendrite.yaml"]
|
|
|
|
EXPOSE 7775
|
|
|
|
VOLUME /etc/dendrite |