fix(docker): copy routers and other packages into image (#3)
All checks were successful
CI / lint (push) Successful in 47s
CI / typecheck (push) Successful in 51s
CI / Secret scan (gitleaks) (push) Successful in 32s
CI / test (push) Successful in 1m9s
CI / Security audit (bandit) (push) Successful in 31s

This commit is contained in:
Crypto Rug Munch 2026-07-03 00:49:02 +02:00
parent 7baa48ec4d
commit df66d4b3bc

View file

@ -34,6 +34,10 @@ COPY --from=builder /root/.cache/ms-playwright /root/.cache/ms-playwright
WORKDIR /app
COPY *.py ./
COPY routers/ ./routers/
COPY llm_providers/ ./llm_providers/
COPY stealth_scripts/ ./stealth_scripts/
COPY templates/ ./templates/
RUN mkdir -p /app/sessions
EXPOSE 8002