Skip to content

Commit 78a8d92

Browse files
committedDec 27, 2022
Add Dockerfile
1 parent 1edc497 commit 78a8d92

6 files changed

+79
-3
lines changed
 

‎.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules

‎Dockerfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM node:18-alpine
2+
3+
WORKDIR /app
4+
5+
COPY . .
6+
7+
RUN npm ci --only=production
8+
9+
CMD [ "npm", "start" ]

‎README.md

+29-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ APP_PORT=3000
177177
178178
VERCEL_GIT_REPO_SLUG=gpt-ai-assistant
179179
VERCEL_ACCESS_TOKEN=<your_vercel_access_token>
180-
VERCEL_DEPLOY_HOOK_URL=<your_vercel_deploy_hook_url>
181180
182181
OPENAI_API_KEY=<your_openai_api_key>
183182
@@ -214,6 +213,35 @@ Human: 嗨?
214213
AI: 很高興見到你!有什麼可以為你服務的嗎?
215214
```
216215

216+
### Using Docker
217+
218+
Copy `.env.example` to `.env`.
219+
220+
```bash
221+
cp .env.example .env
222+
```
223+
224+
Set the environment variables as follows:
225+
226+
```env
227+
APP_DEBUG=true
228+
APP_PORT=3000
229+
230+
VERCEL_GIT_REPO_SLUG=gpt-ai-assistant
231+
VERCEL_ACCESS_TOKEN=<your_vercel_access_token>
232+
233+
OPENAI_API_KEY=<your_openai_api_key>
234+
235+
LINE_CHANNEL_ACCESS_TOKEN=<your_line_channel_access_token>
236+
LINE_CHANNEL_SECRET=<your_line_channel_secret>
237+
```
238+
239+
Start a local server with Docker Compose.
240+
241+
```bash
242+
docker-compose up -d
243+
```
244+
217245
## Changelog
218246

219247
Detailed changes for each release are documented in the [release notes](https://github.com/memochou1993/gpt-ai-assistant/releases).

‎README.zh.md

+30-2
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ cd gpt-ai-assistant
162162
npm ci
163163
```
164164

165-
### 測試
165+
### 執行測試
166166

167167
建立 `.env.test` 檔。
168168

@@ -211,7 +211,6 @@ APP_PORT=3000
211211
212212
VERCEL_GIT_REPO_SLUG=gpt-ai-assistant
213213
VERCEL_ACCESS_TOKEN=<your_vercel_access_token>
214-
VERCEL_DEPLOY_HOOK_URL=<your_vercel_deploy_hook_url>
215214
216215
OPENAI_API_KEY=<your_openai_api_key>
217216
@@ -248,6 +247,35 @@ Human: 嗨?
248247
AI: 很高興見到你!有什麼可以為你服務的嗎?
249248
```
250249

250+
### 使用 Docker 容器
251+
252+
建立 `.env` 檔。
253+
254+
```bash
255+
cp .env.example .env
256+
```
257+
258+
設置環境變數如下:
259+
260+
```env
261+
APP_DEBUG=true
262+
APP_PORT=3000
263+
264+
VERCEL_GIT_REPO_SLUG=gpt-ai-assistant
265+
VERCEL_ACCESS_TOKEN=<your_vercel_access_token>
266+
267+
OPENAI_API_KEY=<your_openai_api_key>
268+
269+
LINE_CHANNEL_ACCESS_TOKEN=<your_line_channel_access_token>
270+
LINE_CHANNEL_SECRET=<your_line_channel_secret>
271+
```
272+
273+
在終端機使用以下指令,啟動一個本地伺服器。
274+
275+
```bash
276+
docker-compose up -d
277+
```
278+
251279
## 更新日誌
252280

253281
請到「[Releases](https://github.com/memochou1993/gpt-ai-assistant/releases)」頁面查看發布通知。

‎docker-compose.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: "3"
2+
3+
services:
4+
app:
5+
container_name: gpt-ai-assistant
6+
build: .
7+
restart: always
8+
ports:
9+
- "${APP_PORT}:${APP_PORT}"

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"type": "module",
55
"scripts": {
66
"dev": "nodemon api/index.js",
7+
"start": "node api/index.js",
78
"test": "jest"
89
},
910
"dependencies": {

0 commit comments

Comments
 (0)