mirror of
https://github.com/Murasame-Dev/McStatus-API.git
synced 2025-12-17 05:38:00 +00:00
- pyproject `uvicorn[standard] -> fastapi[standard]` - requirements.txt 使用 `uv export` 生成 - Dockerfile 换用 `python:3.13` - README pip 安装增加版本提示
9 lines
164 B
Docker
9 lines
164 B
Docker
FROM python:3.13
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
RUN pip install gunicorn && pip install -r requirements.txt
|
|
EXPOSE 8000
|
|
|
|
CMD ["gunicorn", "-b", "0.0.0.0:8000", "app:app"]
|