fufa/chatgpt
0
1FROM python:3.112 3RUN echo '[global]' > /etc/pip.conf && \4 echo 'index-url = https://mirrors.aliyun.com/pypi/simple/' >> /etc/pip.conf && \5 echo 'trusted-host = mirrors.aliyun.com' >> /etc/pip.conf6 7RUN pip3 install gradio requests[socks] mdtex2html8 9COPY . /gpt10WORKDIR /gpt11 12 13CMD ["python3", "main.py"]