cd2a / Dockerfile
ykl45's picture
Create Dockerfile
331de24 verified
Raw
History Blame Contribute Delete
221 Bytes
FROM python:3.11
RUN apt update
RUN apt install git
RUN git clone https://github.com/renqabs/cd2a.git /app
WORKDIR "app"
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "main.py", "--host", "0.0.0.0:7860"]