forked from xueandyue/ChatGPT-AccessToken-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
41 lines (29 loc) · 1.12 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# 使用 Python 3.9 的官方镜像作为基础镜像
FROM python:3.9-buster
# 设置工作目录为 /app
WORKDIR /app
# 将当前目录的内容复制到容器的 /app 目录
COPY . /app
# 更新系统并安装 curl,bash和 git
RUN apt-get update && apt-get install -y curl bash git
# 安装 Node.js 和 yarn
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \
&& apt-get install -y nodejs \
&& npm install --global yarn
RUN yarn config set registry https://registry.npm.taobao.org
# 安装 pandora 项目
RUN git clone https://github.com/pengzhile/pandora.git \
&& cd pandora \
&& pip install .
# 下载和安装项目
RUN git clone https://github.com/xueandyue/ChatGPT-3.5-AccessToken-Web.git \
&& cd ChatGPT-3.5-AccessToken-Web \
&& yarn install \
&& yarn build
# 开放端口3000
EXPOSE 3000
# 开放端口8008
EXPOSE 8008
# 环境变量
ENV ACCESS_TOKEN=YourToken CODE=YourCode
CMD sh -c 'echo "${ACCESS_TOKEN}" > /app/pandora/token.txt && cd /app/pandora && pandora -s 0.0.0.0:8008 -t token.txt & cd /app/ChatGPT-3.5-AccessToken-Web && yarn start'