From e81a0f1b65005d44adec4fee45203105ed5a1d74 Mon Sep 17 00:00:00 2001 From: Samruddhi Khandale Date: Wed, 18 Oct 2023 10:15:19 -0700 Subject: [PATCH] Re-pin images with new major versions (Dotnet) --- src/dotnet-fsharp/.devcontainer/devcontainer.json | 2 +- src/dotnet-fsharp/devcontainer-template.json | 2 +- src/dotnet-mssql/.devcontainer/Dockerfile | 2 +- src/dotnet-mssql/devcontainer-template.json | 2 +- src/dotnet-postgres/.devcontainer/Dockerfile | 2 +- src/dotnet-postgres/devcontainer-template.json | 2 +- src/dotnet/.devcontainer/devcontainer.json | 2 +- src/dotnet/devcontainer-template.json | 2 +- src/javascript-node-mongo/.devcontainer/Dockerfile | 2 +- src/javascript-node-mongo/devcontainer-template.json | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/dotnet-fsharp/.devcontainer/devcontainer.json b/src/dotnet-fsharp/.devcontainer/devcontainer.json index 5dca8e4f..29901852 100644 --- a/src/dotnet-fsharp/.devcontainer/devcontainer.json +++ b/src/dotnet-fsharp/.devcontainer/devcontainer.json @@ -3,7 +3,7 @@ { "name": "F# (.NET)", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "mcr.microsoft.com/devcontainers/dotnet:0-6.0-bullseye", + "image": "mcr.microsoft.com/devcontainers/dotnet:1-6.0-bullseye", // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, diff --git a/src/dotnet-fsharp/devcontainer-template.json b/src/dotnet-fsharp/devcontainer-template.json index 098568a7..7e69d9a8 100644 --- a/src/dotnet-fsharp/devcontainer-template.json +++ b/src/dotnet-fsharp/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "dotnet-fsharp", - "version": "1.1.2", + "version": "2.0.0", "name": "F# (.NET)", "description": "Develop F# and .NET based applications. Includes all needed SDKs, extensions, and dependencies.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet-fsharp", diff --git a/src/dotnet-mssql/.devcontainer/Dockerfile b/src/dotnet-mssql/.devcontainer/Dockerfile index a9d50911..297b93d8 100644 --- a/src/dotnet-mssql/.devcontainer/Dockerfile +++ b/src/dotnet-mssql/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/devcontainers/dotnet:0-${templateOption:imageVariant} +FROM mcr.microsoft.com/devcontainers/dotnet:1-${templateOption:imageVariant} # Install SQL Tools: SQLPackage and sqlcmd COPY mssql/installSQLtools.sh installSQLtools.sh diff --git a/src/dotnet-mssql/devcontainer-template.json b/src/dotnet-mssql/devcontainer-template.json index f58dfa2d..9e19f2e7 100644 --- a/src/dotnet-mssql/devcontainer-template.json +++ b/src/dotnet-mssql/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "dotnet-mssql", - "version": "1.2.6", + "version": "2.0.0", "name": "C# (.NET) and MS SQL", "description": "Develop C# and .NET Core based applications. Includes all needed SDKs, extensions, dependencies and an MS SQL container for parallel database development. Adds an additional MS SQL container to the C# (.NET Core) container definition and deploys any .dacpac files from the mssql .devcontainer folder.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet-mssql", diff --git a/src/dotnet-postgres/.devcontainer/Dockerfile b/src/dotnet-postgres/.devcontainer/Dockerfile index 5675c9fd..f2036716 100644 --- a/src/dotnet-postgres/.devcontainer/Dockerfile +++ b/src/dotnet-postgres/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/devcontainers/dotnet:0-${templateOption:imageVariant} +FROM mcr.microsoft.com/devcontainers/dotnet:1-${templateOption:imageVariant} # [Optional] Uncomment this section to install additional OS packages. # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ diff --git a/src/dotnet-postgres/devcontainer-template.json b/src/dotnet-postgres/devcontainer-template.json index f8bb9475..a969a932 100644 --- a/src/dotnet-postgres/devcontainer-template.json +++ b/src/dotnet-postgres/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "dotnet-postgres", - "version": "1.3.2", + "version": "2.0.0", "name": "C# (.NET) and PostgreSQL", "description": "Develop C# and .NET Core based applications. Includes all needed SDKs, extensions, dependencies and a PostgreSQL container for parallel database development. Adds an additional PostgreSQL container to the C# (.NET Core) container definition.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet-postgres", diff --git a/src/dotnet/.devcontainer/devcontainer.json b/src/dotnet/.devcontainer/devcontainer.json index c6b817f9..b5deeb46 100644 --- a/src/dotnet/.devcontainer/devcontainer.json +++ b/src/dotnet/.devcontainer/devcontainer.json @@ -3,7 +3,7 @@ { "name": "C# (.NET)", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "mcr.microsoft.com/devcontainers/dotnet:0-${templateOption:imageVariant}" + "image": "mcr.microsoft.com/devcontainers/dotnet:1-${templateOption:imageVariant}" // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, diff --git a/src/dotnet/devcontainer-template.json b/src/dotnet/devcontainer-template.json index 0297336b..c7bca0c3 100644 --- a/src/dotnet/devcontainer-template.json +++ b/src/dotnet/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "dotnet", - "version": "1.2.5", + "version": "2.0.0", "name": "C# (.NET)", "description": "Develop C# and .NET based applications. Includes all needed SDKs, extensions, and dependencies.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/dotnet", diff --git a/src/javascript-node-mongo/.devcontainer/Dockerfile b/src/javascript-node-mongo/.devcontainer/Dockerfile index 48adabaa..796ba510 100644 --- a/src/javascript-node-mongo/.devcontainer/Dockerfile +++ b/src/javascript-node-mongo/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/devcontainers/javascript-node:0-${templateOption:imageVariant} +FROM mcr.microsoft.com/devcontainers/javascript-node:1-${templateOption:imageVariant} # Install MongoDB command line tools - though mongo-database-tools not available on arm64 ARG MONGO_TOOLS_VERSION=6.0 diff --git a/src/javascript-node-mongo/devcontainer-template.json b/src/javascript-node-mongo/devcontainer-template.json index 825c735e..72b5f19b 100644 --- a/src/javascript-node-mongo/devcontainer-template.json +++ b/src/javascript-node-mongo/devcontainer-template.json @@ -1,6 +1,6 @@ { "id": "javascript-node-mongo", - "version": "2.0.0", + "version": "3.0.0", "name": "Node.js & Mongo DB", "description": "Develop applications in Node.js and Mongo DB. Includes Node.js, eslint, and yarn in a container linked to a Mongo DB.", "documentationURL": "https://github.com/devcontainers/templates/tree/main/src/javascript-node-mongo",