summaryrefslogtreecommitdiffstats
path: root/Docker/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Docker/Dockerfile')
-rw-r--r--Docker/Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Docker/Dockerfile b/Docker/Dockerfile
new file mode 100644
index 00000000..89ca0e5d
--- /dev/null
+++ b/Docker/Dockerfile
@@ -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"]