# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: MIT-0 FROM amazon/aws-lambda-nodejs:14 WORKDIR ${LAMBDA_TASK_ROOT} COPY package.json ./ RUN npm install --only=production COPY index.js ./ COPY script.sql ./ CMD [ "index.handler" ]