Spaces:
Runtime error
Runtime error
File size: 267 Bytes
18ce63f 0ec750f 18ce63f feb9098 0a5b78e |
1 2 3 4 5 6 7 8 9 |
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"]
|