Skip to content

Commit c0d7861

Browse files
CopilotKaniska244
andcommitted
fix: sync template image versions with devcontainers/images manifests
Updated the following image version references to match the current versions in devcontainers/images manifest.json files: - typescript-node: 1 → 4 (manifest version 4.0.6) - javascript-node: 1 → 4 (manifest version 4.0.8) - python: 2 → 3, 1 → 3 (manifest version 3.0.5) - java: 1 → 3 (manifest version 3.0.5) - cpp: 1 → 2 (manifest version 2.1.5) - ruby: 2 → 3 (manifest version 3.0.2) All updated tags verified to exist on MCR registry. Co-authored-by: Kaniska244 <186041440+Kaniska244@users.noreply.github.com>
1 parent de8c2b7 commit c0d7861

12 files changed

Lines changed: 12 additions & 12 deletions

File tree

src/cpp-mariadb/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/cpp:1-${templateOption:imageVariant}
1+
FROM mcr.microsoft.com/devcontainers/cpp:2-${templateOption:imageVariant}
22

33
# Everything below this is needed for installing MariaDB
44
# Instructions are copied and modified from: https://mariadb.com/docs/clients/mariadb-connectors/connector-cpp/install/

src/cpp/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/cpp:1-${templateOption:imageVariant}
1+
FROM mcr.microsoft.com/devcontainers/cpp:2-${templateOption:imageVariant}
22

33
ARG REINSTALL_CMAKE_VERSION_FROM_SOURCE="${templateOption:reinstallCmakeVersionFromSource}"
44

src/java-postgres/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/java:1-${templateOption:imageVariant}
1+
FROM mcr.microsoft.com/devcontainers/java:3-${templateOption:imageVariant}
22

33
ARG INSTALL_MAVEN="${templateOption:installMaven}"
44
ARG MAVEN_VERSION=""

src/java/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Java",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/java:1-${templateOption:imageVariant}",
6+
"image": "mcr.microsoft.com/devcontainers/java:3-${templateOption:imageVariant}",
77

88
"features": {
99
"ghcr.io/devcontainers/features/java:1": {

src/javascript-node-mongo/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/javascript-node:1-${templateOption:imageVariant}
1+
FROM mcr.microsoft.com/devcontainers/javascript-node:4-${templateOption:imageVariant}
22

33
# Install MongoDB command line tools - though mongo-database-tools not available on arm64
44
ARG MONGO_TOOLS_VERSION=6.0

src/javascript-node-postgres/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/javascript-node:1-${templateOption:imageVariant}
1+
FROM mcr.microsoft.com/devcontainers/javascript-node:4-${templateOption:imageVariant}
22

33
# [Optional] Uncomment this section to install additional OS packages.
44
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \

src/javascript-node/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Node.js",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-${templateOption:imageVariant}"
6+
"image": "mcr.microsoft.com/devcontainers/javascript-node:4-${templateOption:imageVariant}"
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
// "features": {},

src/postgres/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/python:1-${templateOption:imageVariant}
1+
FROM mcr.microsoft.com/devcontainers/python:3-${templateOption:imageVariant}
22

33
ENV PYTHONUNBUFFERED 1
44

src/python/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Python 3",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/python:2-${templateOption:imageVariant}"
6+
"image": "mcr.microsoft.com/devcontainers/python:3-${templateOption:imageVariant}"
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
// "features": {},

src/ruby-rails-postgres/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/ruby:2-${templateOption:imageVariant}
1+
FROM mcr.microsoft.com/devcontainers/ruby:3-${templateOption:imageVariant}
22

33
# Install Rails
44
RUN su vscode -c "gem install rails webdrivers"

0 commit comments

Comments
 (0)