2020-05-21 12:02:28 +00:00
|
|
|
FROM matrixdotorg/dendrite:latest AS base
|
|
|
|
|
|
|
|
FROM alpine:latest
|
|
|
|
|
|
|
|
ARG component=monolith
|
|
|
|
ENV entrypoint=${component}
|
|
|
|
|
|
|
|
COPY --from=base /build/bin/${component} /usr/bin
|
2020-10-20 10:34:22 +00:00
|
|
|
COPY --from=base /build/bin/goose /usr/bin
|
2020-05-21 12:02:28 +00:00
|
|
|
|
|
|
|
VOLUME /etc/dendrite
|
|
|
|
WORKDIR /etc/dendrite
|
|
|
|
|
|
|
|
ENTRYPOINT /usr/bin/${entrypoint} $@
|