Spaces:
Runtime error
Runtime error
use docker SDK for HF space deployment
Browse files
README.md
CHANGED
@@ -2,8 +2,7 @@
|
|
2 |
title: "ReferenceBot: KnowledgeGPT + Azure OpenAI = <3"
|
3 |
colorFrom: indigo
|
4 |
colorTo: indigo
|
5 |
-
sdk:
|
6 |
-
sdk_version: 1.27.2
|
7 |
app_port: 8501
|
8 |
emoji: 💬
|
9 |
pinned: false
|
@@ -75,9 +74,8 @@ streamlit run knowledge_gpt/main.py
|
|
75 |
Run the following commands to build and run the Docker image.
|
76 |
|
77 |
```bash
|
78 |
-
|
79 |
-
docker
|
80 |
-
docker run -p 8501:8501 ReferenceBot
|
81 |
```
|
82 |
|
83 |
Open http://localhost:8501 in your browser to access the app.
|
|
|
2 |
title: "ReferenceBot: KnowledgeGPT + Azure OpenAI = <3"
|
3 |
colorFrom: indigo
|
4 |
colorTo: indigo
|
5 |
+
sdk: docker
|
|
|
6 |
app_port: 8501
|
7 |
emoji: 💬
|
8 |
pinned: false
|
|
|
74 |
Run the following commands to build and run the Docker image.
|
75 |
|
76 |
```bash
|
77 |
+
docker build -t reference-bot .
|
78 |
+
docker run -p 8501:8501 reference-bot
|
|
|
79 |
```
|
80 |
|
81 |
Open http://localhost:8501 in your browser to access the app.
|