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 1f8abfc commit 0f7a28cCopy full SHA for 0f7a28c
.releaserc
@@ -10,7 +10,6 @@
10
[
11
"@semantic-release/exec",
12
{
13
- "prepareCmd": "docker build -t lambda-container-service .",
14
"publishCmd": "./publish.sh ${nextRelease.version} ${options.branch} ${commits.length} ${Date.now()}"
15
}
16
]
Dockerfile
@@ -2,7 +2,7 @@ FROM public.ecr.aws/lambda/nodejs:14
2
3
COPY . ${LAMBDA_TASK_ROOT}
4
5
-RUN npm install
+RUN npm ci
6
7
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile)
8
CMD [ "app/index.handler" ]
0 commit comments