Skip to content

Commit

Permalink
build: specify registry for dockcross base images
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Apr 11, 2024
1 parent 6ac13d2 commit 7147bd1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/docker/itk-wasm-base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=dockcross/web-wasm
ARG BASE_IMAGE=docker.io/dockcross/web-wasm
FROM $BASE_IMAGE:20240326-00e7558
ARG BASE_IMAGE

Expand Down
8 changes: 4 additions & 4 deletions src/docker/itk-wasm-base/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ if $wasi; then
--build-arg VCS_REF=${VCS_REF} \
--build-arg VCS_URL=${VCS_URL} \
--build-arg BUILD_DATE=${BUILD_DATE} \
--build-arg BASE_IMAGE=dockcross/web-wasi \
--build-arg BASE_IMAGE=docker.io/dockcross/web-wasi \
--build-arg LDFLAGS="${wasi_ld_flags}" \
--build-arg CFLAGS="${wasi_c_flags}" \
$script_dir $@
Expand All @@ -98,7 +98,7 @@ if $wasi; then
--build-arg VCS_REF=${VCS_REF} \
--build-arg VCS_URL=${VCS_URL} \
--build-arg BUILD_DATE=${BUILD_DATE} \
--build-arg BASE_IMAGE=dockcross/web-wasi \
--build-arg BASE_IMAGE=docker.io/dockcross/web-wasi \
--build-arg LDFLAGS="${wasi_ld_flags}" \
--build-arg CFLAGS="${wasi_c_flags}" \
$script_dir $@
Expand Down Expand Up @@ -137,7 +137,7 @@ if $debug; then
--build-arg VCS_REF=${VCS_REF} \
--build-arg VCS_URL=${VCS_URL} \
--build-arg BUILD_DATE=${BUILD_DATE} \
--build-arg BASE_IMAGE=dockcross/web-wasi \
--build-arg BASE_IMAGE=docker.io/dockcross/web-wasi \
--build-arg LDFLAGS="${wasi_debug_ld_flags}" \
--build-arg CFLAGS="${wasi_debug_c_flags}" \
$script_dir $@
Expand All @@ -149,7 +149,7 @@ if $debug; then
--build-arg VCS_REF=${VCS_REF} \
--build-arg VCS_URL=${VCS_URL} \
--build-arg BUILD_DATE=${BUILD_DATE} \
--build-arg BASE_IMAGE=dockcross/web-wasi \
--build-arg BASE_IMAGE=docker.io/dockcross/web-wasi \
--build-arg LDFLAGS="${wasi_debug_ld_flags}" \
--build-arg CFLAGS="${wasi_debug_c_flags}" \
$script_dir $@
Expand Down

0 comments on commit 7147bd1

Please sign in to comment.