fix engine dockerfile

This commit is contained in:
Jun-te Kim 2026-06-12 16:07:39 +00:00
parent 0159176772
commit 1f40c3aeef

View file

@ -43,6 +43,10 @@ COPY ./utils/ ./utils/
# engine.py -> backend.apis.GoogleSolarApi -> infrastructure.solar; without this
# the lambda fails at init with "No module named 'infrastructure'".
COPY ./infrastructure/ ./infrastructure/
# backend.app.db.models.portfolio re-exports PortfolioGoal from
# domain.modelling.portfolio_goal (ADR-0017 amendment); without this the lambda
# fails at init with "No module named 'domain'".
COPY ./domain/ ./domain/
COPY ./etl/epc/ ./etl/epc/
COPY ./etl/epc_clean/ ./etl/epc_clean/
COPY ./etl/bill_savings/ ./etl/bill_savings/