Skip to content

Commit 08d76e1

Browse files
committed
fix: ecr
1 parent 115697b commit 08d76e1

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

container-uploader/app.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ const buildDockerImage = async (
3939
const platform = architecture === "x86_64" ? "linux/amd64" : "linux/arm64";
4040
const tag = `${accountId}.dkr.ecr.${region}.amazonaws.com/lambda-perf:${runtime.path}-${architecture}`;
4141
const cmdLine = `docker build . -f Dockerfile.sample --platform ${platform} -t ${tag} --build-arg baseImage='${runtime.image.baseImage}' --build-arg handlerCode='${runtime.path}' --build-arg handlerCmd='${runtime.handler}'`;
42+
console.log(cmdLine);
4243
childProcess.execSync(cmdLine);
4344
const cmdLogin = `aws ecr get-login-password --region ${region} | docker login --username AWS --password-stdin ${accountId}.dkr.ecr.${region}.amazonaws.com`;
4445
console.log("docker logging in!");

0 commit comments

Comments
 (0)