feat: add orchestrator scripts and Docker setup for droplet management; include SSH key handling and environment configuration

This commit is contained in:
2025-09-23 15:25:56 +08:00
parent 975035a54a
commit f4c7a98b6a
7 changed files with 214 additions and 8 deletions

10
orchestrator/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM alpine:latest
RUN apk --no-cache add curl bash git doctl openssh
WORKDIR /root
COPY orchestrating.sh orchestrating.sh
COPY cleanup.sh cleanup.sh
RUN chmod +x orchestrating.sh cleanup.sh
CMD ["tail" ,"-f" ,"/dev/null"]