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