Skip to content

Commit

Permalink
Update supported Docker images to match documentation (#239)
Browse files Browse the repository at this point in the history
* Update supported Docker images to match documentation

Matches the list expressed in https://docs.vapor.build/projects/environments.html#docker-runtimes at the time of commit.

* Updated test to recognize php83 docker containers
  • Loading branch information
lhilton authored Nov 5, 2023
1 parent 0aa4383 commit b95bbb5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/BuildProcess/BuildContainerImage.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class BuildContainerImage
'laravelphp/vapor:php80',
'laravelphp/vapor:php81',
'laravelphp/vapor:php82',
'laravelphp/vapor:php83',
];

/**
Expand All @@ -35,6 +36,7 @@ class BuildContainerImage
*/
public static $armImages = [
'laravelphp/vapor:php82-arm',
'laravelphp/vapor:php83-arm',
];

/**
Expand Down
4 changes: 2 additions & 2 deletions tests/BuildContainerImageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public function runtimeProvider()
'docker',
'FROM laravelphp/vapor:php83',
[],
false,
true,
],
[
'docker-arm',
Expand All @@ -208,7 +208,7 @@ public function runtimeProvider()
'docker-arm',
'FROM laravelphp/vapor:php83-arm',
[],
false,
true,
],
[
'docker-arm',
Expand Down

0 comments on commit b95bbb5

Please sign in to comment.