Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jbudz committed Mar 22, 2022
1 parent 621780e commit 8669358
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function generator({
const dockerTargetName = `${imageTag}${imageFlavor}:${version}${
dockerTagQualifier ? '-' + dockerTagQualifier : ''
}`;
const dockerArchitecutre = architecture === 'aarch64' ? 'linux/arm64' : 'linux/amd64';
const dockerArchitecture = architecture === 'aarch64' ? 'linux/arm64' : 'linux/amd64';
return dedent(`
#!/usr/bin/env bash
#
Expand Down Expand Up @@ -60,7 +60,7 @@ function generator({
retry_docker_pull ${baseOSImage}
echo "Building: kibana${imageFlavor}-docker"; \\
docker buildx build --platform ${dockerArchitecutre} -t ${dockerTargetName} -f Dockerfile . || exit 1;
docker buildx build --platform ${dockerArchitecture} -t ${dockerTargetName} -f Dockerfile . || exit 1;
docker save ${dockerTargetName} | gzip -c > ${dockerTargetFilename}
Expand Down

0 comments on commit 8669358

Please sign in to comment.