Create Dockerfile

pull/114/head
kail518 1 year ago committed by GitHub
parent c08375d0bb
commit 304d149ba6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,11 @@
FROM python:3.10
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/xtekky/gpt4free.git
WORKDIR /gpt4free
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8501
CMD ["streamlit", "run", "streamlit_app.py"]
Loading…
Cancel
Save