eddited dockerfile to have imports

This commit is contained in:
Jun-te Kim 2026-06-04 15:39:59 +00:00
parent 5e3153fe43
commit 05af3c39e5

View file

@ -20,7 +20,10 @@ RUN pip install --no-cache-dir -r requirements.txt
# DDD-shaped packages only -- no pandas, no legacy backend/. The finaliser writes
# both `property` and the terminal `bulk_address_uploads` status through DDD repos
# on its own PostgresConfig session (ADR-0013).
# on its own PostgresConfig session (ADR-0013). `datatypes/` comes in via the
# Property aggregate's import closure (domain/property/property.py -> site_notes ->
# datatypes/epc/...), enforced by tests/test_lambda_packaging.py.
COPY datatypes/ datatypes/
COPY domain/ domain/
COPY infrastructure/ infrastructure/
COPY orchestration/ orchestration/