-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathDockerfile_accessToken
32 lines (23 loc) · 1.05 KB
/
Dockerfile_accessToken
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
# 使用 Python 3.9 的官方镜像作为基础镜像
FROM python:3.9-buster
# 设置工作目录为 /app
WORKDIR /app
# 将当前目录的内容复制到容器的 /app 目录
COPY . /app
# 更新系统并安装 curl,bash和 git,cron
RUN apt-get update && apt-get install -y curl bash lsof
# 安装 Node.js 和 yarn
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get install -y nodejs \
&& npm install --global yarn
RUN yarn config set registry https://registry.npm.taobao.org
# 下载和安装项目
RUN cd /app/ChatGPT-AccessToken-Web \
&& yarn install
# 开放端口3000
EXPOSE 3000
# 开放端口8008
EXPOSE 8008
# 环境变量
ENV ACCESS_TOKEN=YourToken CODE=YourCode Jwturl=YourJwt
CMD sh -c 'echo OPENAI_API_KEY="${ACCESS_TOKEN}" > /app/ChatGPT-AccessToken-Web/.env.local && python3 /app/PandoraNext/updatejson.py "${ACCESS_TOKEN}" && chmod 777 /app/PandoraNext -R && cd /app/PandoraNext && curl -fL "${Jwturl}" > license.jwt && cd /app/PandoraNext && ./PandoraNext & cd /app/ChatGPT-AccessToken-Web && yarn build && yarn start'