清空,重构

This commit is contained in:
2026-04-28 13:15:55 +08:00
parent 381079bbf3
commit 61535a53c2
170 changed files with 0 additions and 1219 deletions

View File

@@ -1,8 +0,0 @@
FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y libpq-dev gcc && rm -rf /var/lib/apt/lists/*
COPY requirements/base.txt requirements/base.txt
RUN pip install --no-cache-dir -r requirements/base.txt
COPY . .
EXPOSE 8000
CMD ["uvicorn", "config.asgi:application", "--host", "0.0.0.0", "--port", "8000"]