We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46c5a96 commit e8643f7Copy full SHA for e8643f7
1 file changed
container-uploader/app.mjs
@@ -39,10 +39,9 @@ const buildDockerImage = async (
39
const platform = architecture === "x86_64" ? "linux/amd64" : "linux/arm64";
40
const tag = `${accountId}.dkr.ecr.${region}.amazonaws.com/lambda-perf:${runtime.path}-${architecture}`;
41
const cmdLine = `
42
- docker buildx build . \
+ DOCKER_BUILDKIT=0 docker build . \
43
-f Dockerfile.sample \
44
--platform ${platform} \
45
- --load \
46
-t ${tag} \
47
--build-arg baseImage='${runtime.image.baseImage}' \
48
--build-arg handlerCode='${runtime.path}' \
0 commit comments