diff options
Diffstat (limited to 'g4f/.v1/Dockerfile')
-rw-r--r-- | g4f/.v1/Dockerfile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/g4f/.v1/Dockerfile b/g4f/.v1/Dockerfile new file mode 100644 index 00000000..5b2a1f7a --- /dev/null +++ b/g4f/.v1/Dockerfile @@ -0,0 +1,19 @@ +FROM python:3.11.3-slim + +RUN apt-get update \ + && apt-get install -y --no-install-recommends ffmpeg \ + && apt-get -y clean \ + && rm -rf /var/lib/apt/lists/* + +COPY requirements.txt /tmp +RUN pip install --upgrade pip \ + && pip install -r /tmp/requirements.txt \ + && rm /tmp/requirements.txt + +COPY . /root/gpt4free + +WORKDIR /root/gpt4free + +CMD ["streamlit", "run", "./gui/streamlit_app.py"] + +EXPOSE 8501 |