mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-17 20:03:10 -06:00
9 lines
303 B
Docker
9 lines
303 B
Docker
FROM dendrite:latest as build-env
|
|
|
|
# Copy the binary from build container to final container
|
|
FROM alpine:3.10
|
|
COPY --from=build-env /app/bin/dendrite-federation-api-server /
|
|
|
|
# Component specific entrypoint, environment variables, and arguments
|
|
CMD /dendrite-federation-api-server \
|
|
--config $CONFIG |