From f6ef3cb2237d8c336e915ef77ddbe6f37934c4fd Mon Sep 17 00:00:00 2001 From: MIDORIBIN Date: Fri, 28 Jul 2023 19:07:17 +0900 Subject: refactor: refactor provider --- g4f/.v1/Dockerfile | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 g4f/.v1/Dockerfile (limited to 'g4f/.v1/Dockerfile') diff --git a/g4f/.v1/Dockerfile b/g4f/.v1/Dockerfile deleted file mode 100644 index 5b2a1f7a..00000000 --- a/g4f/.v1/Dockerfile +++ /dev/null @@ -1,19 +0,0 @@ -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 -- cgit v1.2.3