mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-05 15:39:26 +01:00
13 lines
246 B
Docker
13 lines
246 B
Docker
|
FROM matrixdotorg/dendrite:latest AS base
|
||
|
|
||
|
FROM alpine:latest
|
||
|
|
||
|
ARG component=monolith
|
||
|
ENV entrypoint=${component}
|
||
|
|
||
|
COPY --from=base /build/bin/${component} /usr/bin
|
||
|
|
||
|
VOLUME /etc/dendrite
|
||
|
WORKDIR /etc/dendrite
|
||
|
|
||
|
ENTRYPOINT /usr/bin/${entrypoint} $@
|