mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-26 08:13:09 -06:00
21 lines
370 B
Docker
21 lines
370 B
Docker
ARG builder
|
|
ARG TARGETPLATFORM
|
|
|
|
RUN "echo $TARGETPLATFORM"
|
|
|
|
# https://stackoverflow.com/a/63472135/3551604
|
|
FROM ${TARGETPLATFORM}/${builder}:latest as builder
|
|
|
|
FROM alpine:latest
|
|
|
|
ARG DENDRITE_BINARY
|
|
|
|
ENV DENDRITE_BINARY=${DENDRITE_BINARY}
|
|
|
|
COPY --from=builder /build/bin/* /usr/bin/
|
|
|
|
VOLUME /etc/dendrite
|
|
WORKDIR /etc/dendrite
|
|
|
|
ENTRYPOINT "/usr/bin/${DENDRITE_BINARY}"
|