File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 12
12
- ** Customizable** : Configure model, token limits, and API key via the ` .env ` file.
13
13
- ** Secure API Key Handling** : Loads OpenAI API key and other configurations from the ` .env ` file.
14
14
- ** Dockerized** : Fully containerized for ease of use across different systems and architectures.
15
+ - ** Multiple Architecture Support** : Runs on linux/armv7, linux/amd64, linux/arm64
15
16
16
17
---
17
18
@@ -79,7 +80,16 @@ If running locally (not with Docker):
79
80
docker build -t openaictl .
80
81
```
81
82
82
- 2 . ** Run the Chatbot** :
83
+ ** For Multiple Architecture build on your Machine** :
84
+
85
+ ``` bash
86
+ docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t < your container registry> /openaictl:< tag> --push .
87
+ ```
88
+
89
+ > ** Note** : Multiarchitecture builds will not be visible by using ` docker images ` command.
90
+ > Your registry will show the different images.
91
+
92
+ 3 . ** Run the Chatbot** :
83
93
84
94
``` bash
85
95
docker run --rm -it --env-file .env openaictl
You can’t perform that action at this time.
0 commit comments