Skip to content

Commit

Permalink
chore: use bookworm-slim-node20 jsii-suprchain image in publishing.ts (
Browse files Browse the repository at this point in the history
…#1796)

* chore: use bookworm-slim-node20 jsii-suprchain image in publishing.ts

Signed-off-by: Sumu <[email protected]>

* WIP

Signed-off-by: Sumu <[email protected]>

---------

Signed-off-by: Sumu <[email protected]>
  • Loading branch information
sumupitchayan authored Dec 7, 2024
1 parent 4eadbca commit faf3d2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/publishing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class PublishToMavenProject extends Construct implements IPublisher {
const forReal = props.dryRun === undefined ? 'false' : (!props.dryRun).toString();

const shellable = new Shellable(this, 'Default', {
platform: new LinuxPlatform(props.buildImage ?? cbuild.LinuxBuildImage.fromDockerRegistry('public.ecr.aws/jsii/superchain:1-bullseye-slim-node18')),
platform: new LinuxPlatform(props.buildImage ?? cbuild.LinuxBuildImage.fromDockerRegistry('public.ecr.aws/jsii/superchain:1-bookworm-slim-node20')),
scriptDirectory: path.join(__dirname, 'publishing', 'maven'),
entrypoint: 'publish.sh',
environment: noUndefined({
Expand Down Expand Up @@ -281,7 +281,7 @@ export class PublishToNuGetProject extends Construct implements IPublisher {
}

const shellable = new Shellable(this, 'Default', {
platform: new LinuxPlatform(props.buildImage ?? cbuild.LinuxBuildImage.fromDockerRegistry('public.ecr.aws/jsii/superchain:1-bullseye-slim-node18')),
platform: new LinuxPlatform(props.buildImage ?? cbuild.LinuxBuildImage.fromDockerRegistry('public.ecr.aws/jsii/superchain:1-bookworm-slim-node20')),
scriptDirectory: path.join(__dirname, 'publishing', 'nuget'),
entrypoint: 'publish.sh',
environment,
Expand Down

0 comments on commit faf3d2f

Please sign in to comment.