We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc34ece commit f14c841Copy full SHA for f14c841
Dockerfile
@@ -1,9 +1,9 @@
1
FROM public.ecr.aws/lambda/nodejs:18-x86_64
2
3
-COPY dist ${LAMBDA_TASK_ROOT}
+COPY dist ${LAMBDA_TASK_ROOT}/dist
4
COPY package.json ${LAMBDA_TASK_ROOT}
5
-COPY src ${LAMBDA_TASK_ROOT}
+COPY src ${LAMBDA_TASK_ROOT}/src
6
COPY index.js ${LAMBDA_TASK_ROOT}
7
-COPY node_modules ${LAMBDA_TASK_ROOT}
+COPY node_modules ${LAMBDA_TASK_ROOT}/node_modules
8
9
CMD [ "index.handler" ]
0 commit comments