fix(docker): copy routers, llm_providers, stealth_scripts, templates into image
All checks were successful
CI / lint (pull_request) Successful in 52s
CI / typecheck (pull_request) Successful in 54s
CI / Secret scan (gitleaks) (pull_request) Successful in 33s
CI / test (pull_request) Successful in 1m8s
CI / Security audit (bandit) (pull_request) Successful in 33s

This commit is contained in:
Crypto Rug Munch 2026-07-03 00:47:06 +02:00
parent 7baa48ec4d
commit 394003e348

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