Skip to content

Commit

Permalink
Use correct image
Browse files Browse the repository at this point in the history
  • Loading branch information
akash1810 committed Oct 13, 2023
1 parent 6c694e6 commit 348b22a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/__snapshots__/interactive-tilemaker.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ exports[`The InteractiveTilemaker stack matches the snapshot 1`] = `
"ContainerDefinitions": [
{
"Essential": true,
"Image": "docker/hello-world",
"Image": "hello-world",
"Memory": 2048,
"Name": "HelloWorldContainer",
},
Expand Down
2 changes: 1 addition & 1 deletion lib/interactive-tilemaker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class InteractiveTilemaker extends GuStack {
});

task.addContainer('HelloWorldContainer', {
image: ContainerImage.fromRegistry('docker/hello-world'),
image: ContainerImage.fromRegistry('hello-world'),
memoryLimitMiB: 2048,
});

Expand Down

0 comments on commit 348b22a

Please sign in to comment.