Initial commit: BTC/USDT Trading View with technical indicators

This commit is contained in:
kihong.kim
2025-12-06 15:04:36 +09:00
commit 99ce8ccd0d
11 changed files with 2861 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM nginx:alpine
# Copy static files
COPY index.html /usr/share/nginx/html/
COPY styles.css /usr/share/nginx/html/
COPY app.js /usr/share/nginx/html/
COPY indicators.js /usr/share/nginx/html/
# Copy nginx config
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]