File size: 205 Bytes
63eb7e2
 
dbfd3b7
b4057b0
63eb7e2
 
 
 
1
2
3
4
5
6
7
8
FROM python:3.11
RUN apt update 
RUN apt install -y git
RUN git clone https://github.com/renqabs/notdiamond2api.git /app
WORKDIR app
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]