Skip to content

Commit d5d47cb

Browse files
authored
Merge pull request #1028 from thewtex/docker-image-bump
Docker image bump
2 parents ceafae0 + bf9f238 commit d5d47cb

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
const defaultImageTag = '20231217-40780708'
2+
export default defaultImageTag

packages/core/typescript/itk-wasm/src/itk-wasm-cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import typescriptBindgen from './bindgen/typescript/typescript-bindgen.js'
1111
import pythonBindgen from './bindgen/python/python-bindgen.js'
1212
import pythonWebDemoBindgen from './bindgen/python-web-demo/python-web-demo-bindgen.js'
1313

14-
const program = new Command()
14+
import defaultImageTag from './default-image-tag.js'
1515

16-
const defaultImageTag = '20231129-1565c734'
16+
const program = new Command()
1717

1818
function processCommonOptions(wasiDefault=false) {
1919
const options = program.opts()

src/docker/RELEASE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ git checkout main
77
git pull upstream main
88
git clean -fdx
99
git checkout -b docker-bump
10-
npm ci
10+
pnpm i
1111
12-
# Update the `defaultImageTag` in src/itk-wasm-cli.js
12+
# Update the `defaultImageTag` in packages/core/typescript/itk-wasm/src/default-image-tag.js
1313
# Based on:
1414
#
1515
# echo $(date '+%Y%m%d')-$(git rev-parse --short HEAD)
1616
#
1717
./src/docker/build.sh --with-debug
1818
# DockerHub credential environmental variables must be set
1919
./src/docker/push.sh
20-
git add -- src/itk-wasm-cli.js
20+
git add -- packages/core/typescript/itk-wasm/src/default-image-tag.js
2121
git commit -m "feat(itk-wasm-cli): Update default Docker image for $(date '+%Y%m%d')-$(git rev-parse --short HEAD)"
2222
```

0 commit comments

Comments
 (0)