Skip to content

Commit da52a25

Browse files
committed
Updated container images to use public.ecr.aws/lambda/dotnet:10 as the base image
1 parent 3b95213 commit da52a25

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

Blueprints/BlueprintDefinitions/vs2026/AspNetCoreWebAPI-Image-FSharp/template/src/BlueprintBaseName.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/lambda/dotnet:8
1+
FROM public.ecr.aws/lambda/dotnet:10
22
WORKDIR /var/task
33

44
# This COPY command copies the .NET Lambda project's build artifacts from the host machine into the image.

Blueprints/BlueprintDefinitions/vs2026/AspNetCoreWebAPI-Image-FSharp/template/src/BlueprintBaseName.1/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Alternatively the Docker file could be written to use [multi-stage](https://docs
4444
have the .NET project built inside the container. Below is an example of building the .NET project inside the image.
4545

4646
```dockerfile
47-
FROM public.ecr.aws/lambda/dotnet:8 AS base
47+
FROM public.ecr.aws/lambda/dotnet:10 AS base
4848

4949
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build
5050
WORKDIR /src

Blueprints/BlueprintDefinitions/vs2026/AspNetCoreWebAPI-Image/template/src/BlueprintBaseName.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/lambda/dotnet:8
1+
FROM public.ecr.aws/lambda/dotnet:10
22

33
WORKDIR /var/task
44

Blueprints/BlueprintDefinitions/vs2026/AspNetCoreWebAPI-Image/template/src/BlueprintBaseName.1/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Alternatively the Docker file could be written to use [multi-stage](https://docs
5151
have the .NET project built inside the container. Below is an example of building the .NET project inside the image.
5252

5353
```dockerfile
54-
FROM public.ecr.aws/lambda/dotnet:8
54+
FROM public.ecr.aws/lambda/dotnet:10
5555
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build
5656
WORKDIR /src
5757
COPY ["BlueprintBaseName.1.csproj", "BlueprintBaseName.1/"]

Blueprints/BlueprintDefinitions/vs2026/EmptyFunction-Image-FSharp/template/src/BlueprintBaseName.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/lambda/dotnet:8
1+
FROM public.ecr.aws/lambda/dotnet:10
22

33
WORKDIR /var/task
44

Blueprints/BlueprintDefinitions/vs2026/EmptyFunction-Image-FSharp/template/src/BlueprintBaseName.1/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Alternatively the Docker file could be written to use [multi-stage](https://docs
2222
have the .NET project built inside the container. Below is an example of building the .NET project inside the image.
2323

2424
```dockerfile
25-
FROM public.ecr.aws/lambda/dotnet:8 AS base
25+
FROM public.ecr.aws/lambda/dotnet:10 AS base
2626

2727
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build
2828
WORKDIR /src

Blueprints/BlueprintDefinitions/vs2026/EmptyFunction-Image/template/src/BlueprintBaseName.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/lambda/dotnet:8
1+
FROM public.ecr.aws/lambda/dotnet:10
22

33
WORKDIR /var/task
44

Blueprints/BlueprintDefinitions/vs2026/EmptyFunction-Image/template/src/BlueprintBaseName.1/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Alternatively the Docker file could be written to use [multi-stage](https://docs
2222
have the .NET project built inside the container. Below is an example of building the .NET project inside the image.
2323

2424
```dockerfile
25-
FROM public.ecr.aws/lambda/dotnet:8 AS base
25+
FROM public.ecr.aws/lambda/dotnet:10 AS base
2626

2727
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build
2828
WORKDIR /src

Blueprints/BlueprintDefinitions/vs2026/EmptyServerless-Image-FSharp/template/src/BlueprintBaseName.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/lambda/dotnet:8
1+
FROM public.ecr.aws/lambda/dotnet:10
22

33
WORKDIR /var/task
44

Blueprints/BlueprintDefinitions/vs2026/EmptyServerless-Image/template/src/BlueprintBaseName.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/lambda/dotnet:8
1+
FROM public.ecr.aws/lambda/dotnet:10
22

33
WORKDIR /var/task
44

0 commit comments

Comments
 (0)