mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-16 14:50:52 +01:00
24d8df664c
* Fix #897 and shuffle directory around * Update find-lint * goimports Co-authored-by: Neil Alexander <neilalexander@users.noreply.github.com>
13 lines
No EOL
246 B
Text
13 lines
No EOL
246 B
Text
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} $@ |