Spaces:
Running
Running
Thang6822 commited on
Commit ·
d03e882
1
Parent(s): 7c78a60
Bo sung kien truc Docker va README
Browse files- Dockerfile +11 -0
- README.md +8 -0
Dockerfile
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.11
|
| 2 |
+
|
| 3 |
+
WORKDIR /app
|
| 4 |
+
|
| 5 |
+
COPY requirements.txt .
|
| 6 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 7 |
+
|
| 8 |
+
COPY . .
|
| 9 |
+
|
| 10 |
+
EXPOSE 7860
|
| 11 |
+
CMD ["python", "app.py"]
|
README.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Kronos AI Analysis
|
| 2 |
|
| 3 |
Kronos AI Analysis is a FastAPI + Lightweight Charts application for:
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Kronos AI
|
| 3 |
+
emoji: 🚀
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: red
|
| 6 |
+
sdk: docker
|
| 7 |
+
pinned: false
|
| 8 |
+
---
|
| 9 |
# Kronos AI Analysis
|
| 10 |
|
| 11 |
Kronos AI Analysis is a FastAPI + Lightweight Charts application for:
|