mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-18 04:13: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
270 B
Docker
8 lines
270 B
Docker
FROM dendrite-build AS build
|
|
#############################
|
|
## Create Room Events Tool ##
|
|
#############################
|
|
FROM scratch AS create-room-events-tool
|
|
COPY --from=build /build/bin/create-room-events /bin/create-room-events
|
|
ENTRYPOINT ["/bin/create-room-events"]
|