E_Learning_platform / Dockerfile
rayymaxx's picture
Made application
6c0bb59
raw
history blame contribute delete
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"]