加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 401 Bytes
一键复制 编辑 原始数据 按行查看 历史
wavezhang 提交于 2023-06-07 12:54 . fix docker build error
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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化