Skip to content

Commit 06a5326

Browse files
authored
chore(build): Ensure pristine builds of the Lambda functions. (#1345)
Making changes to the Lambda code, and then running this script doesn’t always pick up the latest changes. This option forces Docker to perform a pristine (uncached) build each time.
1 parent 5b3e423 commit 06a5326

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.ci/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ mkdir -p "${OUTPUT_DIR}"
1515
(
1616
set -x
1717
DOCKER_BUILDKIT=1 docker build \
18+
--no-cache \
1819
--target=final \
1920
--output=type=local,dest="${OUTPUT_DIR}" \
2021
-f "${TOP_DIR}/.ci/Dockerfile" \

0 commit comments

Comments
 (0)