ChatSydney / Dockerfile
Xuan2060320350's picture
Update Dockerfile
0ec750f
raw
history blame
267 Bytes
FROM python:3.11
RUN apt update
RUN apt install git
RUN git clone https://github.com/2060320350/ChatSydney-react-zh-Hans-CN.git
WORKDIR "ChatSydney-react-zh-Hans-CN"
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "main.py", "--host", "0.0.0.0:7860"]