XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

Create gpt4free.def

3e48284e
– sanz <sanzbernward@gmail.com>
提交于

代码差异

1 个文件 +15 -0
Added Singularity/gpt4free.def +15 -0
@@ -0,0 +1,15 @@
1 Bootstrap: docker
2 From: python:3.10-slim
3
4 %post
5 apt-get update && apt-get install -y git
6 git clone https://github.com/xtekky/gpt4free.git
7 cd gpt4free
8 pip install --no-cache-dir -r requirements.txt
9 cp gui/streamlit_app.py .
10
11 %expose
12 8501
13
14 %startscript
15 exec streamlit run streamlit_app.py