Skip to content

Commit e1e5445

Browse files
Fix PHP sqlsrv compatibility and update golang version across runtime images (#2891)
* Update golang version * Add sql drivers for php * minor fix * Add Php 8.5 test
1 parent 91e35e0 commit e1e5445

27 files changed

Lines changed: 69 additions & 92 deletions

build/testStartupScriptGenerators.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ declare -r MODULE_TO_TEST="..."
2525
declare -r CONTAINER_NAME="oryxtests_$RANDOM"
2626

2727
echo "Running tests in golang docker image..."
28-
docker run -v $GEN_DIR:$GEN_DIR_CONTAINER_RO:ro --name $CONTAINER_NAME mcr.microsoft.com/oss/go/microsoft/golang:1.25.7-bullseye bash -c \
28+
docker run -v $GEN_DIR:$GEN_DIR_CONTAINER_RO:ro --name $CONTAINER_NAME mcr.microsoft.com/oss/go/microsoft/golang:1.26.1-bullseye bash -c \
2929
"cp -rf $GEN_DIR_CONTAINER_RO/* $GEN_DIR_CONTAINER && \
3030
cd $GEN_DIR_CONTAINER && \
3131
chmod u+x restorePackages.sh && \

images/runtime/dotnetcore/10.0/noble.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN --mount=type=secret,id=vss_nuget_accesstoken,target=/run/secrets/vss_nuget_a
2222
dotnet tool install --tool-path /dotnetcore-tools dotnet-monitor --version 10.0.0-rc.1.25460.1
2323

2424
# Startup script generator
25-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.7-bookworm AS startupCmdGen
25+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.26.1-bookworm AS startupCmdGen
2626

2727
# GOPATH is set to "/go" in the base image
2828
WORKDIR /go/src

images/runtime/dotnetcore/8.0/bookworm.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN --mount=type=secret,id=vss_nuget_accesstoken,target=/run/secrets/vss_nuget_a
2222
dotnet tool install --tool-path /dotnetcore-tools dotnet-monitor --version 8.*
2323

2424
# Startup script generator
25-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.7-bookworm AS startupCmdGen
25+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.26.1-bookworm AS startupCmdGen
2626

2727
# GOPATH is set to "/go" in the base image
2828
WORKDIR /go/src

images/runtime/dotnetcore/8.0/bullseye.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN --mount=type=secret,id=vss_nuget_accesstoken,target=/run/secrets/vss_nuget_a
2222
dotnet tool install --tool-path /dotnetcore-tools dotnet-monitor --version 8.*
2323

2424
# Startup script generator
25-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.7-bullseye AS startupCmdGen
25+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.26.1-bullseye AS startupCmdGen
2626

2727
# GOPATH is set to "/go" in the base image
2828
WORKDIR /go/src

images/runtime/dotnetcore/9.0/bookworm.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN --mount=type=secret,id=vss_nuget_accesstoken,target=/run/secrets/vss_nuget_a
2222
dotnet tool install --tool-path /dotnetcore-tools dotnet-monitor --version 9.*
2323

2424
# Startup script generator
25-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.7-bookworm AS startupCmdGen
25+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.26.1-bookworm AS startupCmdGen
2626

2727
# GOPATH is set to "/go" in the base image
2828
WORKDIR /go/src

images/runtime/node/18/bullseye.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG BASE_IMAGE
22

33
# Startup script generator
4-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.7-bullseye as startupCmdGen
4+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.26.1-bullseye as startupCmdGen
55

66
# GOPATH is set to "/go" in the base image
77
WORKDIR /go/src

images/runtime/node/20/bookworm.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG BASE_IMAGE
22

33
# Startup script generator
4-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.7-bookworm as startupCmdGen
4+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.26.1-bookworm as startupCmdGen
55

66
# GOPATH is set to "/go" in the base image
77
WORKDIR /go/src

images/runtime/node/20/bullseye.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG BASE_IMAGE
22

33
# Startup script generator
4-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.7-bullseye as startupCmdGen
4+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.26.1-bullseye as startupCmdGen
55

66
# GOPATH is set to "/go" in the base image
77
WORKDIR /go/src

images/runtime/node/22/bookworm.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG BASE_IMAGE
22

33
# Startup script generator
4-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.7-bookworm as startupCmdGen
4+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.26.1-bookworm as startupCmdGen
55

66
# GOPATH is set to "/go" in the base image
77
WORKDIR /go/src

images/runtime/node/22/bullseye.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG BASE_IMAGE
22

33
# Startup script generator
4-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.7-bullseye as startupCmdGen
4+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.26.1-bullseye as startupCmdGen
55

66
# GOPATH is set to "/go" in the base image
77
WORKDIR /go/src

0 commit comments

Comments
 (0)