deploy(docker): update COPY commands to explicitly include necessary files and directories

This commit is contained in:
MingxuanGame
2025-09-14 05:43:36 +00:00
parent f4e6c3a58f
commit 66b5610dea
2 changed files with 12 additions and 3 deletions

View File

@@ -17,9 +17,13 @@ COPY pyproject.toml uv.lock ./
COPY packages/ ./packages/
RUN uv sync --frozen --no-dev
RUN uv pip install rosu-pp-py
COPY . .
COPY alembic.ini ./
COPY tools/ ./tools/
COPY migrations/ ./migrations/
COPY static/ ./app/static/
COPY app/ ./app/
COPY main.py ./
# ---