fix(docker): copy routers and other packages into image #3

Merged
cryptorugmunch merged 1 commit from fix/dockerfile-copy-dirs into main 2026-07-03 00:49:02 +02:00

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