mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-18 18:41:52 +08:00
1719a3b582
Adds one-click deploy to [Render](https://render.com) for self-hosters. The change is additive: a root `render.yaml`, two small files under `.render/`, and one button in the existing Self-Host section of the README.
9 lines
250 B
Docker
9 lines
250 B
Docker
# syntax=docker/dockerfile:1.7
|
|
|
|
# Adds a start script to the published AFFiNE image. Nothing is compiled here.
|
|
FROM ghcr.io/toeverything/affine:stable
|
|
|
|
COPY --chmod=0755 start.sh /usr/local/bin/render-start.sh
|
|
|
|
CMD ["/usr/local/bin/render-start.sh"]
|