ap3 / Dockerfile
ykl45's picture
Update Dockerfile
ff70a3c verified
Raw
History Blame Contribute Delete
195 Bytes
FROM python:3.11
RUN apt update
RUN apt install git
RUN git clone https://github.com/renqabs/A2OA.git /app
WORKDIR "app"
RUN pip install -r requirements.txt
EXPOSE 8000
CMD ["python", "main.py"]