Skip to content

Commit 0f7a28c

Browse files
committed
ci(release): remove redundant Docker build command
1 parent 1f8abfc commit 0f7a28c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.releaserc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
[
1111
"@semantic-release/exec",
1212
{
13-
"prepareCmd": "docker build -t lambda-container-service .",
1413
"publishCmd": "./publish.sh ${nextRelease.version} ${options.branch} ${commits.length} ${Date.now()}"
1514
}
1615
]

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM public.ecr.aws/lambda/nodejs:14
22

33
COPY . ${LAMBDA_TASK_ROOT}
44

5-
RUN npm install
5+
RUN npm ci
66

77
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile)
88
CMD [ "app/index.handler" ]

0 commit comments

Comments
 (0)