diff options
author | – sanz <sanzbernward@gmail.com> | 2023-04-27 11:51:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-27 11:51:42 +0200 |
commit | 9f1a159c57af2643c3b7f478d2e36867c338f3ff (patch) | |
tree | 8ea24c855878e578814b52baf9f4453706116d4d /Singularity/gpt4free.sif | |
parent | Create gpt4free.def (diff) | |
download | gpt4free-9f1a159c57af2643c3b7f478d2e36867c338f3ff.tar gpt4free-9f1a159c57af2643c3b7f478d2e36867c338f3ff.tar.gz gpt4free-9f1a159c57af2643c3b7f478d2e36867c338f3ff.tar.bz2 gpt4free-9f1a159c57af2643c3b7f478d2e36867c338f3ff.tar.lz gpt4free-9f1a159c57af2643c3b7f478d2e36867c338f3ff.tar.xz gpt4free-9f1a159c57af2643c3b7f478d2e36867c338f3ff.tar.zst gpt4free-9f1a159c57af2643c3b7f478d2e36867c338f3ff.zip |
Diffstat (limited to 'Singularity/gpt4free.sif')
-rw-r--r-- | Singularity/gpt4free.sif | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Singularity/gpt4free.sif b/Singularity/gpt4free.sif new file mode 100644 index 00000000..67bc1241 --- /dev/null +++ b/Singularity/gpt4free.sif @@ -0,0 +1,15 @@ +Bootstrap: docker +From: python:3.10-slim + +%post + apt-get update && apt-get install -y git + git clone https://github.com/xtekky/gpt4free.git + cd gpt4free + pip install --no-cache-dir -r requirements.txt + cp gui/streamlit_app.py . + +%expose + 8501 + +%startscript + exec streamlit run streamlit_app.py |