abacus / Dockerfile
KEITUGAKU's picture
Create Dockerfile
a404104 verified
raw
history blame contribute delete
206 Bytes
FROM python:3.11
RUN apt update
RUN apt install -y git
RUN git clone https://github.com/Hibiyananao/abacus2api.git /app
WORKDIR app
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "main.py"]