We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e2f0be commit 332dd8cCopy full SHA for 332dd8c
packages/integration-tests/docker-setup/docker.ts
@@ -54,10 +54,15 @@ async function startL1ChainContainer(network: StartedNetwork) {
54
// since the docker file is doing some copying operations from the host machine so first building the image
55
const projectRoot = path.resolve(__dirname, '../../../');
56
const dockerfilePath = path.join(projectRoot, 'docker/l1-chain');
57
-
58
- const buildInstance = await GenericContainer.fromDockerfile(
+
+ let buildInstance
59
+ try {
60
+ buildInstance = await GenericContainer.fromDockerfile(
61
dockerfilePath
62
).build(IMAGE_NAME);
63
+} catch(error) {
64
+ console.log(error);
65
+}
66
67
const container: StartedTestContainer = await buildInstance
68
.withExposedPorts(
0 commit comments