mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-05 00:01:00 +00:00
16 lines
315 B
Plaintext
16 lines
315 B
Plaintext
|
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
|