Skip to content

Commit 80b41cb

Browse files
authoredSep 26, 2023
Add files via upload
1 parent 8eda75e commit 80b41cb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+195802
-0
lines changed
 

‎code/Chatglm反卷总局/Dockerfile

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM registry.cn-shanghai.aliyuncs.com/fjzj/chatglm_fjzj:v3
2+
# 如有安装其他软件的需求
3+
#RUN apt-get update && apt-get install curl
4+
5+
# 如果安装其他python包的情况
6+
#pip3 install numpy --index-url=http://mirrors.aliyun.com/pypi/simple/ --trusted-host=mirrors.aliyun.com
7+
8+
# 复制代码到镜像仓库
9+
COPY app /app
10+
11+
# 指定工作目录
12+
WORKDIR /app
13+
14+
# 容器启动运行命令
15+
CMD ["bash", "run.sh"]

‎code/Chatglm反卷总局/README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#### Clone with HTTP
2+
3+
```bash
4+
git clone https://www.modelscope.cn/fjzj/chatglm_finance.git
5+
```
6+
7+
### 运行步骤
8+
9+
docker运行

0 commit comments

Comments
 (0)
Please sign in to comment.