first commit
Browse files- README.md +10 -0
- dockerfile +1 -1
- app.py → main.py +0 -0
README.md
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: "AGDS"
|
3 |
+
emoji: 🤗
|
4 |
+
colorFrom: yellow
|
5 |
+
colorTo: blue
|
6 |
+
sdk: streamlit
|
7 |
+
sdk_version: "0.84.0"
|
8 |
+
app_file: main.py
|
9 |
+
pinned: false
|
10 |
+
---
|
dockerfile
CHANGED
@@ -36,4 +36,4 @@ COPY . .
|
|
36 |
EXPOSE 80
|
37 |
|
38 |
# Command to run the Uvicorn server using check_health.sh to wait for the model_server
|
39 |
-
CMD ["uvicorn", "
|
|
|
36 |
EXPOSE 80
|
37 |
|
38 |
# Command to run the Uvicorn server using check_health.sh to wait for the model_server
|
39 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80","--log-level","debug"]
|
app.py → main.py
RENAMED
File without changes
|