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

@@ -19,7 +19,12 @@ COPY packages/ ./packages/
RUN uv sync --frozen --no-dev
RUN uv pip install git+https://github.com/GooGuTeam/gu-pp-py.git
COPY . .
COPY alembic.ini ./
COPY tools/ ./tools/
COPY migrations/ ./migrations/
COPY static/ ./app/static/
COPY app/ ./app/
COPY main.py ./
# ---