Skip to content

Commit a021a2b

Browse files
committed
Add SSR runtime
1 parent 1e43064 commit a021a2b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Runtimes/Runtimes.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,10 @@ public function __construct(string $version = '')
126126
$flutter = new Runtime('flutter', 'Flutter', 'sh helpers/server.sh');
127127
$flutter->addVersion('3.24', 'dart:3.5.2', 'openruntimes/flutter:'.$this->version.'-3.24', [System::X86, System::ARM64]);
128128
$this->runtimes['flutter'] = $flutter;
129+
130+
$ssr = new Runtime('ssr', 'SSR', 'sh helpers/server.sh');
131+
$ssr->addVersion('22', 'node:22.9.0-alpine3.20', 'openruntimes/ssr:' . $this->version . '-22', [System::X86, System::ARM64]);
132+
$this->runtimes['ssr'] = $ssr;
129133
}
130134

131135
/**

0 commit comments

Comments
 (0)