mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-02-26 14:33:09 -06:00
Remove old run scripts Add environment parsing Add Dockerfiles Add docker-compose for easy building Signed-off-by: feffe <feffe@feffe.dev>
8 lines
242 B
Docker
8 lines
242 B
Docker
FROM dendrite-build AS build
|
|
#########################
|
|
## Create Account Tool ##
|
|
#########################
|
|
FROM scratch AS create-account-tool
|
|
COPY --from=build /build/bin/create-account /bin/create-account
|
|
ENTRYPOINT ["/bin/create-account"]
|