sanbo
commited on
Commit
·
f7c4454
1
Parent(s):
b25ba32
update sth. at 2025-01-06 22:20:39
Browse files- Dockerfile +2 -2
- degpt250106.py → degpt.py +3 -0
- more_core.py +1 -1
Dockerfile
CHANGED
@@ -38,8 +38,8 @@ COPY --from=builder /usr/local /usr/local
|
|
38 |
|
39 |
COPY more_core.py .
|
40 |
RUN chmod +x more_core.py
|
41 |
-
COPY
|
42 |
-
RUN chmod +x
|
43 |
|
44 |
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
45 |
CMD curl -f http://localhost:${PORT}/ || exit 1
|
|
|
38 |
|
39 |
COPY more_core.py .
|
40 |
RUN chmod +x more_core.py
|
41 |
+
COPY degpt.py .
|
42 |
+
RUN chmod +x degpt.py
|
43 |
|
44 |
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
45 |
CMD curl -f http://localhost:${PORT}/ || exit 1
|
degpt250106.py → degpt.py
RENAMED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
import json
|
2 |
import requests
|
3 |
|
|
|
1 |
+
"""
|
2 |
+
update time: 2025.01.06
|
3 |
+
"""
|
4 |
import json
|
5 |
import requests
|
6 |
|
more_core.py
CHANGED
@@ -11,7 +11,7 @@ import random
|
|
11 |
import json
|
12 |
import string
|
13 |
from apscheduler.schedulers.background import BackgroundScheduler
|
14 |
-
import
|
15 |
|
16 |
app = FastAPI(
|
17 |
title="ones",
|
|
|
11 |
import json
|
12 |
import string
|
13 |
from apscheduler.schedulers.background import BackgroundScheduler
|
14 |
+
import degpt as dg
|
15 |
|
16 |
app = FastAPI(
|
17 |
title="ones",
|