先推上去看看有缺什么依赖
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-10-24 20:18:42 +08:00
parent eb32c1af9a
commit f6670eb672
2 changed files with 21 additions and 2 deletions

View File

@ -24,7 +24,7 @@ ENV POETRY_NO_INTERACTION=1 \
WORKDIR /app
RUN pip install poetry
RUN pip install --no-cache-dir poetry
COPY pyproject.toml poetry.lock ./
RUN python -m poetry install --no-root && rm -rf $POETRY_CACHE_DIR
@ -37,6 +37,8 @@ COPY --from=builder ${VIRTUAL_ENV} ${VIRTUAL_ENV}
WORKDIR /app
RUN python -m playwright install
COPY bot.py pyproject.toml .env.prod .env.test ./
COPY assets ./assets
COPY scripts ./scripts