Skip to content

Commit

Permalink
Add static runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
Meldiron committed Oct 25, 2024
1 parent a6678cc commit 0a42f9c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Runtimes/Runtimes.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down

0 comments on commit 0a42f9c

Please sign in to comment.