FROM python:3.10 ENV PYTHONUNBUFFERED=1 WORKDIR /app/ COPY pyproject.toml uv.lock /app/ COPY website/ /app/website/ RUN python -m pip install django djangorestframework drf-yasg uvicorn -i https://pypi.tuna.tsinghua.edu.cn/simple WORKDIR /app/website/ #CMD ["python", "-m", "uvicorn", "website.asgi:application"] \ #CMD ["python","manage.py","runserver"]