mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-05 00:01:00 +00:00
bd6b23035d
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN11-AOM-1290331 - https://snyk.io/vuln/SNYK-DEBIAN11-AOM-1298721 - https://snyk.io/vuln/SNYK-DEBIAN11-AOM-1300249 - https://snyk.io/vuln/SNYK-DEBIAN11-CURL-3320493 - https://snyk.io/vuln/SNYK-DEBIAN11-CURL-3320493
20 lines
403 B
Docker
20 lines
403 B
Docker
FROM python:3.12.0b1-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
|