Files
checkmyhouse/Dockerfile

16 lines
361 B
Docker
Raw Normal View History

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