Clement Vachet
Remove pytest command
683dcbb
raw
history blame
223 Bytes
# Dockerfile
FROM public.ecr.aws/lambda/python:3.11
# Copy function code
COPY . ${LAMBDA_TASK_ROOT}
# Install dependencies
RUN pip install -r requirements.txt --target "${LAMBDA_TASK_ROOT}"
CMD ["lambda.lambda_handler"]