forked from LengKundee/MQL5-Google-Onedrive
- Add Telegram bot (@GenX_FX_bot) for cloud deployment automation - Add web dashboard with deployment status and quick links - Add Exness terminal deployment script - Add dashboard deployment script (Fly.io, Render, GitHub Pages) - Add personal vault for secure credential storage - Update deploy_cloud.py with Fly.io deployment automation - Add GitHub Pages workflow for dashboard auto-deployment - Add bot setup documentation and deployment guides
4 lines
92 B
Docker
4 lines
92 B
Docker
FROM nginx:alpine
|
|
COPY . /usr/share/nginx/html
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|