firex99/nellox
0
1FROM python:3.10-slim-buster2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y git6 7RUN git clone https://github.com/firenellox99/nellox .8 9RUN pip install --no-cache-dir -r requirements.txt10 11EXPOSE 786012CMD ["uvicorn", "run:main_app", "--host", "0.0.0.0", "--port", "7860", "--workers", "4"]