Skip to content

Commit

Permalink
fix x64 host
Browse files Browse the repository at this point in the history
  • Loading branch information
jbudz committed Jan 19, 2021
1 parent 4df4a3d commit 5bec37e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dev/build/tasks/os_packages/docker_generator/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export async function runDockerGenerator(
// Only build images on native targets
type HostArchitectureToDocker = Record<string, string>;
const hostTarget: HostArchitectureToDocker = {
x64: 'amd64',
x64: 'x64',
arm64: 'aarch64',
};
const buildImage = hostTarget[process.arch] === flags.architecture && flags.image;
Expand Down

0 comments on commit 5bec37e

Please sign in to comment.