onimigtp / Dockerfile
ykl45's picture
Create Dockerfile
1d5394b verified
raw
history blame contribute delete
200 Bytes
FROM python:3.11
RUN apt update
RUN apt install -y git
RUN git clone https://github.com/renqabs/onimigtp.git /app
WORKDIR app
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "main.py"]