cd / Dockerfile
rr1's picture
Create Dockerfile
33b3463 verified
raw
history blame contribute delete
246 Bytes
FROM python:3.11
RUN apt update
RUN apt install git
RUN git clone https://github.com/renqabs/ChatSydney-react-img.git img_test
WORKDIR "img_test"
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "main.py", "--host", "0.0.0.0:7860"]