You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,16 +76,21 @@ Interact with the application through the Chainlit interface. You can upload a f
76
76
77
77
If you have Docker installed and running, you can also run the application using Docker. Follow these steps:
78
78
79
-
1. Build the Docker image:
79
+
1. Build the Docker image locally:
80
80
81
81
```
82
-
docker build -t aayushxrj/pluto.ai
82
+
docker build -t aayushxrj/pluto.ai:latest
83
+
```
84
+
or directly pull from Docker Hub (recommended):
85
+
86
+
```
87
+
docker pull -t aayushxrj/pluto.ai:latest
83
88
```
84
89
85
90
2. Run the Docker container:
86
91
87
92
```
88
-
docker run --name pluto -p 8000:8000 -e ANTHROPIC_API_KEY='your_api_key' aayushxrj/pluto.ai
93
+
docker run --name pluto.ai -p 8000:8000 -e ANTHROPIC_API_KEY='your_api_key' aayushxrj/pluto.ai:latest
89
94
```
90
95
91
96
Replace `your_api_key` with your real Anthropic API key to gain access to the Claude LLM. You can obtain an API key from the [Anthropic Console](https://console.anthropic.com/dashboard).
0 commit comments