Add Drone CI configuration, Dockerfile, and initialization script for Synapse

This commit is contained in:
gyurix
2025-08-31 11:22:18 +02:00
parent 360ec9b7a0
commit 2cdb2b9bf8
3 changed files with 262 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM alpine:latest
RUN apk add --no-cache yq
COPY start.sh /start.sh
RUN chmod +x /start.sh
CMD ["/start.sh"]