From dcaab90ebc5a8a2db9cf431f7d23ae27f42abfb6 Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Wed, 19 Feb 2025 18:15:09 -0600 Subject: [PATCH] Use --frozen-lockfile in reproducible builds Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> --- reproducible-builds/docker-entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reproducible-builds/docker-entrypoint.sh b/reproducible-builds/docker-entrypoint.sh index 1a980b49f2..c9cfb14824 100644 --- a/reproducible-builds/docker-entrypoint.sh +++ b/reproducible-builds/docker-entrypoint.sh @@ -34,10 +34,10 @@ echo "BUILD_TYPE: ${BUILD_TYPE}" # UNIX timestamp will be generated at the time of the build, and is non-deterministic. echo "SOURCE_DATE_EPOCH: ${SOURCE_DATE_EPOCH}" -pnpm install +pnpm install --frozen-lockfile pnpm run clean-transpile cd sticker-creator -pnpm install +pnpm install --frozen-lockfile pnpm run build cd .. pnpm run generate