You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Universal image ubuntu focal EOL
* Version bump & removal of commented line.
* Installing libssl 1.1 from archive to help php installation work using oryx
* Additional comments added
* Removing the version bump
* Major version bump and removing commented lines
&& printf "if type code-insiders > /dev/null 2>&1; and not type code > /dev/null 2>&1\n alias code=code-insiders\nend" >> /etc/fish/conf.d/code_alias.fish \
84
+
# Remove scripts now that we're done with them
85
+
&& apt-get clean -y && rm -rf /tmp/scripts
86
+
87
+
# Install libssl1.1 for oryx compatibility based on architecture
88
+
RUN ARCH=$(uname -m) && \
89
+
if [ "$ARCH" = "x86_64" ] || [ "$ARCH" = "amd64" ]; then \
&& printf "if type code-insiders > /dev/null 2>&1; and not type code > /dev/null 2>&1\n alias code=code-insiders\nend" >> /etc/fish/conf.d/code_alias.fish
Copy file name to clipboardExpand all lines: src/universal/manifest.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
1
{
2
-
"version": "2.13.1",
2
+
"version": "3.0.0",
3
3
"build": {
4
4
"latest": true,
5
5
"rootDistro": "debian",
6
6
"tags": [
7
-
"universal:${VERSION}-focal",
7
+
"universal:${VERSION}-noble",
8
8
"universal:${VERSION}-linux",
9
9
"universal:${VERSION}"
10
10
]
11
11
},
12
12
"dependencies": {
13
13
"annotation": "This document describes the base contents of the Universal image. Note that this image also includes detection logic to dynamically install additional language / runtime versions based on your repository's contents. Dynamically installed content can be found in sub-folders under `/opt`.",
0 commit comments