FROM public.ecr.aws/lambda/nodejs:18

COPY api/ ${LAMBDA_TASK_ROOT}/

RUN npm install

CMD ["handler.handler"]
