DirectEd-AI-LoRA-API / Dockerfile
rayymaxx's picture
Made changes to app structure
516d1c9
raw
history blame
216 Bytes
FROM python:3.10
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Run FastAPI app with uvicorn
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]