gpt4free.sif 315 B

12345678910111213141516
  1. Bootstrap: docker
  2. From: python:3.10-slim
  3. %post
  4. apt-get update && apt-get install -y git
  5. git clone https://github.com/xtekky/gpt4free.git
  6. cd gpt4free
  7. pip install --no-cache-dir -r requirements.txt
  8. cp gui/streamlit_app.py .
  9. %expose
  10. 8501
  11. %startscript
  12. exec streamlit run streamlit_app.py