mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
12 lines
488 B
Docker
12 lines
488 B
Docker
# Lambda image for the Ara modelling backend.
|
|
#
|
|
# This is a scaffold — final image will install only ara + its workspace deps
|
|
# (domna-domain, domna-repos, domna-fetchers, domna-utils) plus ML/data libraries.
|
|
# Build via uv to keep cold-start size contained.
|
|
|
|
FROM public.ecr.aws/lambda/python:3.11
|
|
|
|
# TODO: install uv, sync this service's deps from the workspace lock file,
|
|
# copy src/ara/ into ${LAMBDA_TASK_ROOT}/, set CMD to the Lambda handler.
|
|
|
|
CMD ["ara.lambdas.handler.handler"]
|