diff --git a/src/Runtimes/Runtimes.php b/src/Runtimes/Runtimes.php index 9fabcb0..f2cc41a 100644 --- a/src/Runtimes/Runtimes.php +++ b/src/Runtimes/Runtimes.php @@ -118,6 +118,10 @@ public function __construct(string $version = '') $go = new Runtime('go', 'Go', 'sh helpers/server.sh'); $go->addVersion('1.23', 'golang:1.23.1-alpine3.20', 'openruntimes/go:'.$this->version.'-1.23', [System::X86, System::ARM64]); $this->runtimes['go'] = $go; + + $static = new Runtime('static', 'Static', 'sh helpers/server.sh'); + $static->addVersion('1.0', 'joseluisq/static-web-server:2.33-alpine', 'openruntimes/static:'.$this->version.'-1.0', [System::X86, System::ARM64]); + $this->runtimes['static'] = $static; } /**