mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-10 03:41:16 +01:00
67784ecb56
* Remove old Docker stuff * Move hub stuff to upper level docker directory * Build monolith images * Update README.md * Update paths * Update README.md
13 lines
No EOL
246 B
Docker
13 lines
No EOL
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} $@ |