ndd / Dockerfile
ykl45's picture
Update Dockerfile
b4057b0 verified
raw
history blame contribute delete
202 Bytes
FROM python:3.11
RUN apt update
RUN apt install 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"]