fix: set PYTHONPATH for module discovery in Docker

This commit is contained in:
2026-03-08 00:40:56 -05:00
parent 8a999bcc6e
commit c9ddbc4126

View File

@@ -2,6 +2,8 @@ FROM python:3.13-slim
RUN apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/* RUN apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/*
ENV PYTHONPATH=/app/src
WORKDIR /app WORKDIR /app
RUN pip install poetry RUN pip install poetry