Skip to content

Commit

Permalink
优化 docker 构建的镜像文件大小,添加自动化构建 (Chanzhaoyu#42)
Browse files Browse the repository at this point in the history
* perf: optimize docker image

* perf: shrink image size

* fix: build docker image

* fix: docker image namespace

* docs: add docker compose example

* docs: fix docker compose example

* docs: fix again :)

* docs: and again.....
  • Loading branch information
0x-jerry committed Feb 16, 2023
1 parent 77cdcb7 commit 4a06b39
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 11 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: build_docker

on:
push:
branches: [ main ]

jobs:
build_docker:
name: Build docker
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: 0xjerry/chatgpt-web

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
23 changes: 12 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
FROM node:lts
# build front-end
FROM node:lts-alpine AS builder

# copy resource
RUN mkdir /app
COPY ./ /app
WORKDIR /app

# build
RUN npm install pnpm -g
RUN pnpm bootstrap
WORKDIR /app/service
RUN pnpm install
RUN npm install pnpm -g && pnpm install && pnpm run build

# service
FROM node:lts-alpine

COPY /service /app
COPY --from=builder /app/dist /app/public

WORKDIR /app
RUN npm install pnpm -g && pnpm install

EXPOSE 1002
EXPOSE 3002

CMD ["/bin/bash","./start.sh"]

CMD ["pnpm", "run", "start"]
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,20 @@ docker build -t marlkiller/chatgpt-web .
docker run -p 1002:1002 marlkiller/chatgpt-web
```

## Docker compose

```yml
version: '3'

service:
app:
image: 0xjerry/chatgpt-web
ports:
- 3002:3002
environment:
OPENAI_API_KEY: xxxxxx
```

### 网页

根目录下运行以下命令,然后将 `dist` 文件夹复制到你的托管服务器上
Expand Down

0 comments on commit 4a06b39

Please sign in to comment.