sydneychat / Dockerfile
Allensms's picture
Create Dockerfile
780ad3c
raw
history blame contribute delete
No virus
243 Bytes
FROM python:3.11
RUN apt update
RUN apt install git
RUN git clone https://github.com/ALLENFLYS/ChatSydney-react.git
WORKDIR "ChatSydney-react"
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "main.py", "--host", "0.0.0.0:7860"]