Skip to content

Commit

Permalink
build: add quay prefix to default image containers
Browse files Browse the repository at this point in the history
  • Loading branch information
jadh4v committed Jul 26, 2024
1 parent 3fc8e1b commit 43a0fc0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/core/typescript/itk-wasm/src/cli/pnpm-script.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ async function pnpmScript(name, extraArgs, options) {
options,
packageJson,
undefined
) ?? `itkwasm/emscripten:${defaultImageTag}`
) ?? `quay.io/itkwasm/emscripten:${defaultImageTag}`
pnpmCommand = pnpmCommand.concat(['-i', emscriptenDockerImage])
}
break
Expand All @@ -105,7 +105,7 @@ async function pnpmScript(name, extraArgs, options) {
options,
packageJson,
undefined
) ?? `itkwasm/emscripten:${defaultImageTag}`
) ?? `quay.io/itkwasm/emscripten:${defaultImageTag}`
// Currently, we expect the debug docker image to be tagged with -debug
pnpmCommand = pnpmCommand.concat([
'-i',
Expand All @@ -122,7 +122,7 @@ async function pnpmScript(name, extraArgs, options) {
pnpmCommand = pnpmCommand.concat(['itk-wasm', 'build'])
const wasiDockerImage =
configValue('wasi-docker-image', options, packageJson, undefined) ??
`itkwasm/wasi:${defaultImageTag}`
`quay.io/itkwasm/wasi:${defaultImageTag}`
pnpmCommand = pnpmCommand.concat(['-i', wasiDockerImage])
}
break
Expand All @@ -131,7 +131,7 @@ async function pnpmScript(name, extraArgs, options) {
pnpmCommand = pnpmCommand.concat(['itk-wasm', 'build'])
const wasiDockerImage =
configValue('wasi-docker-image', options, packageJson, undefined) ??
`itkwasm/wasi:${defaultImageTag}`
`quay.io/itkwasm/wasi:${defaultImageTag}`
// Currently, we expect the debug docker image to be tagged with -debug
pnpmCommand = pnpmCommand.concat(['-i', `${wasiDockerImage}-debug`])
pnpmCommand = pnpmCommand.concat([
Expand Down

0 comments on commit 43a0fc0

Please sign in to comment.