0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-12-14 20:53:50 +01:00
dendrite/build/docker/Dockerfile.monolith

13 lines
364 B
Text
Raw Normal View History

FROM matrixdotorg/dendrite:latest AS base
FROM alpine:latest
COPY --from=base /build/bin/dendrite-monolith-server /usr/bin
COPY --from=base /build/bin/goose /usr/bin
COPY --from=base /build/bin/create-account /usr/bin
COPY --from=base /build/bin/generate-keys /usr/bin
VOLUME /etc/dendrite
WORKDIR /etc/dendrite
ENTRYPOINT ["/usr/bin/dendrite-monolith-server"]