@@ -12,39 +12,33 @@ check "Oryx version" oryx --version
1212check " Dotnet is not removed if it is not installed by the Oryx Feature" dotnet --version
1313
1414# Install platforms with oryx build tool
15- check " oryx-install-dotnet-2.1 " oryx prep --skip-detection --platforms-and-versions dotnet=2.1.30
16- check " dotnet-2 -installed-by-oryx" ls /opt/dotnet/ | grep 2.1
15+ check " oryx-install-dotnet-10.0 " oryx prep --skip-detection --platforms-and-versions dotnet=10.0.4
16+ check " dotnet-10 -installed-by-oryx" ls /opt/dotnet/ | grep 10.0
1717
18- check " oryx-install-nodejs-12.22.11 " oryx prep --skip-detection --platforms-and-versions nodejs=12.22.11
19- check " nodejs-12.22.11 -installed-by-oryx" ls /opt/nodejs/ | grep 12.22.11
18+ check " oryx-install-nodejs-24.13.0 " oryx prep --skip-detection --platforms-and-versions nodejs=24.13.0
19+ check " nodejs-24.13.0 -installed-by-oryx" ls /opt/nodejs/ | grep 24.13.0
2020
21- check " oryx-install-php-7.3.25" oryx prep --skip-detection --platforms-and-versions php=7.3.25
22- check " php-7.3.25-installed-by-oryx" ls /opt/php/ | grep 7.3.25
23-
24- check " oryx-install-java-12.0.2" oryx prep --skip-detection --platforms-and-versions java=12.0.2
25- check " java-12.0.2-installed-by-oryx" ls /opt/java/ | grep 12.0.2
21+ check " oryx-install-php-8.5.1" oryx prep --skip-detection --platforms-and-versions php=8.5.1
22+ check " php-8.5.1-installed-by-oryx" ls /opt/php/ | grep 8.5.1
2623
2724# Replicates Oryx's behavior for universal image
2825mkdir -p /opt/oryx
29- echo " vso-focal " >> /opt/oryx/.imagetype
26+ echo " vso-bookworm " >> /opt/oryx/.imagetype
3027
3128mkdir -p /opt/dotnet/lts
3229cp -R /usr/share/dotnet/dotnet /opt/dotnet/lts
3330cp -R /usr/share/dotnet/LICENSE.txt /opt/dotnet/lts
3431cp -R /usr/share/dotnet/ThirdPartyNotices.txt /opt/dotnet/lts
3532
3633# Install platforms with oryx build tool
37- check " oryx-install-dotnet-2.1-universal" oryx prep --skip-detection --platforms-and-versions dotnet=2.1.30
38- check " dotnet-2-installed-by-oryx-universal" ls /opt/dotnet/ | grep 2.1
39-
40- check " oryx-install-nodejs-12.22.11-universal" oryx prep --skip-detection --platforms-and-versions nodejs=12.22.11
41- check " nodejs-12.22.11-installed-by-oryx-universal" ls /opt/nodejs/ | grep 12.22.11
34+ check " oryx-install-dotnet-10.0" oryx prep --skip-detection --platforms-and-versions dotnet=10.0.4
35+ check " dotnet-10-installed-by-oryx" ls /opt/dotnet/ | grep 10.0
4236
43- check " oryx-install-php-7.3.25-universal " oryx prep --skip-detection --platforms-and-versions php=7.3.25
44- check " php-7.3.25 -installed-by-oryx-universal " ls /opt/php / | grep 7.3.25
37+ check " oryx-install-nodejs-24.13.0 " oryx prep --skip-detection --platforms-and-versions nodejs=24.13.0
38+ check " nodejs-24.13.0 -installed-by-oryx" ls /opt/nodejs / | grep 24.13.0
4539
46- check " oryx-install-java-12.0.2-universal " oryx prep --skip-detection --platforms-and-versions java=12.0.2
47- check " java-12.0.2 -installed-by-oryx-universal " ls /opt/java / | grep 12.0.2
40+ check " oryx-install-php-8.5.1 " oryx prep --skip-detection --platforms-and-versions php=8.5.1
41+ check " php-8.5.1 -installed-by-oryx" ls /opt/php / | grep 8.5.1
4842
4943# Report result
5044reportResults
0 commit comments