mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-17 20:03:10 -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
235 B
Docker
8 lines
235 B
Docker
FROM dendrite-build AS build
|
|
########################
|
|
## Generate Keys Tool ##
|
|
########################
|
|
FROM scratch AS generate-keys-tool
|
|
COPY --from=build /build/bin/generate-keys /bin/generate-keys
|
|
ENTRYPOINT ["/bin/generate-keys"]
|