Skip to content

Commit ff4cc02

Browse files
Merge branch 'main' into rust_debian_trixie
2 parents cb24c08 + a035cf4 commit ff4cc02

File tree

11 files changed

+76
-44
lines changed

11 files changed

+76
-44
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"image": "mcr.microsoft.com/devcontainers/javascript-node:0-18",
2+
"image": "mcr.microsoft.com/devcontainers/javascript-node:3-22",
33
"features": {
44
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
55
"ghcr.io/devcontainers/features/azure-cli:1": {}

cgmanifest.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1248,6 +1248,16 @@
12481248
}
12491249
}
12501250
},
1251+
{
1252+
"Component": {
1253+
"Type": "other",
1254+
"Other": {
1255+
"Name": "Docker Image: node",
1256+
"Version": "24-bookworm",
1257+
"DownloadUrl": "https://hub.docker.com/_/node"
1258+
}
1259+
}
1260+
},
12511261
{
12521262
"Component": {
12531263
"Type": "other",
@@ -1278,6 +1288,16 @@
12781288
}
12791289
}
12801290
},
1291+
{
1292+
"Component": {
1293+
"Type": "other",
1294+
"Other": {
1295+
"Name": "Docker Image: node",
1296+
"Version": "24-bullseye",
1297+
"DownloadUrl": "https://hub.docker.com/_/node"
1298+
}
1299+
}
1300+
},
12811301
{
12821302
"Component": {
12831303
"Type": "other",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
ARG VARIANT=3.21
1+
ARG VARIANT=3.22
22
FROM alpine:${VARIANT}

src/base-alpine/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
| *Categories* | Core, Other |
1010
| *Image type* | Dockerfile |
1111
| *Published images* | mcr.microsoft.com/devcontainers/base:alpine |
12-
| *Available image variants* | alpine-3.21, alpine-3.20, alpine-3.19, alpine-3.18 ([full list](https://mcr.microsoft.com/v2/devcontainers/base/tags/list)) |
12+
| *Available image variants* | alpine-3.22, alpine-3.21, alpine-3.20, alpine-3.19 ([full list](https://mcr.microsoft.com/v2/devcontainers/base/tags/list)) |
1313
| *Published image architecture(s)* | x86-64, aarch64/arm64 |
1414
| *Container host OS support* | Linux, macOS, Windows |
1515
| *Container OS* | Alpine Linux |
@@ -22,10 +22,11 @@ See **[history](history)** for information on the contents of published images.
2222
You can also directly reference pre-built versions of `.devcontainer/Dockerfile` by using the `image` property in `.devcontainer/devcontainer.json` or updating the `FROM` statement in your own `Dockerfile` to one of the following. An example `Dockerfile` is included in this repository.
2323

2424
- `mcr.microsoft.com/devcontainers/base:alpine` (latest)
25+
- `mcr.microsoft.com/devcontainers/base:alpine-3.22`
2526
- `mcr.microsoft.com/devcontainers/base:alpine-3.21`
2627
- `mcr.microsoft.com/devcontainers/base:alpine-3.20`
2728
- `mcr.microsoft.com/devcontainers/base:alpine-3.19`
28-
- `mcr.microsoft.com/devcontainers/base:alpine-3.18`
29+
2930

3031
Refer to [this guide](https://containers.dev/guide/dockerfile) for more details.
3132

src/base-alpine/manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"version": "0.210.5",
2+
"version": "1.0.0",
33
"variants": [
4+
"3.22",
45
"3.21",
56
"3.20",
6-
"3.19",
7-
"3.18"
7+
"3.19"
88
],
99
"build": {
1010
"latest": false,
@@ -18,7 +18,7 @@
1818
"base:${VERSION}-alpine${VARIANT}"
1919
],
2020
"variantTags": {
21-
"3.21": [
21+
"3.22": [
2222
"base:${VERSION}-alpine"
2323
]
2424
}

src/go/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG VARIANT=1.24-bookworm
1+
ARG VARIANT=1.25-bookworm
22
FROM golang:${VARIANT}
33

44
# [Optional] Uncomment the next line to use go get to install anything else you need

src/go/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
| *Categories* | Core, Languages |
1111
| *Definition type* | Dockerfile |
1212
| *Published images* | mcr.microsoft.com/devcontainers/go |
13-
| *Available image variants* | 1 / 1-bookworm, 1.24 / 1.24-bookworm, 1.23 / 1.23-bookworm, 1-bullseye ([full list](https://mcr.microsoft.com/v2/devcontainers/go/tags/list)) |
13+
| *Available image variants* | 1 / 1-bookworm, 1.25 / 1.25-bookworm, 1.24 / 1.24-bookworm, 1-bullseye ([full list](https://mcr.microsoft.com/v2/devcontainers/go/tags/list)) |
1414
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `bookworm`, and `bullseye` variants |
1515
| *Container host OS support* | Linux, macOS, Windows |
1616
| *Container OS* | Debian |
@@ -24,16 +24,16 @@ You can directly reference pre-built versions of `Dockerfile` by using the `imag
2424

2525
- `mcr.microsoft.com/devcontainers/go` (latest)
2626
- `mcr.microsoft.com/devcontainers/go:1` (or `1-bookworm`, `1-bullseye` to pin to an OS version)
27+
- `mcr.microsoft.com/devcontainers/go:1.25` (or `1.25-bookworm`, `1.25-bullseye` to pin to an OS version)
2728
- `mcr.microsoft.com/devcontainers/go:1.24` (or `1.24-bookworm`, `1.24-bullseye` to pin to an OS version)
28-
- `mcr.microsoft.com/devcontainers/go:1.23` (or `1.23-bookworm`, `1.23-bullseye` to pin to an OS version)
2929

3030
Refer to [this guide](https://containers.dev/guide/dockerfile) for more details.
3131

3232
You can decide how often you want updates by referencing a [semantic version](https://semver.org/) of each image. For example:
3333

34-
- `mcr.microsoft.com/devcontainers/go:1-1.24` (or `1-1.24-bookworm`, `1-1.24-bullseye`)
35-
- `mcr.microsoft.com/devcontainers/go:1.4-1.24` (or `1.4-1.24-bookworm`, `1.4-1.24-bullseye`)
36-
- `mcr.microsoft.com/devcontainers/go:1.4.0-1.24` (or `1.4.0-1.24-bookworm`, `1.4.0-1.24-bullseye`)
34+
- `mcr.microsoft.com/devcontainers/go:1-1.25` (or `1-1.25-bookworm`, `1-1.25-bullseye`)
35+
- `mcr.microsoft.com/devcontainers/go:1.4-1.25` (or `1.4-1.25-bookworm`, `1.4-1.25-bullseye`)
36+
- `mcr.microsoft.com/devcontainers/go:1.4.0-1.25` (or `1.4.0-1.25-bookworm`, `1.4.0-1.25-bullseye`)
3737

3838
However, we only do security patching on the latest [non-breaking, in support](https://github.com/devcontainers/images/issues/90) versions of images (e.g. `1-1.24`). You may want to run `apt-get update && apt-get upgrade` in your Dockerfile if you lock to a more specific version to at least pick up OS security updates.
3939

src/go/manifest.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,53 @@
11
{
22
"version": "1.4.5",
33
"variants": [
4+
"1.25-bookworm",
45
"1.24-bookworm",
5-
"1.23-bookworm",
6-
"1.24-bullseye",
7-
"1.23-bullseye"
6+
"1.25-bullseye",
7+
"1.24-bullseye"
88
],
99
"build": {
10-
"latest": "1.24-bookworm",
10+
"latest": "1.25-bookworm",
1111
"rootDistro": "debian",
1212
"tags": [
1313
"go:${VERSION}-${VARIANT}"
1414
],
1515
"architectures": {
16-
"1.24-bookworm": [
16+
"1.25-bookworm": [
1717
"linux/amd64",
1818
"linux/arm64"
1919
],
20-
"1.23-bookworm": [
20+
"1.24-bookworm": [
2121
"linux/amd64",
2222
"linux/arm64"
2323
],
24-
"1.24-bullseye": [
24+
"1.25-bullseye": [
2525
"linux/amd64",
2626
"linux/arm64"
2727
],
28-
"1.23-bullseye": [
28+
"1.24-bullseye": [
2929
"linux/amd64",
3030
"linux/arm64"
3131
]
3232
},
3333
"variantTags": {
34-
"1.24-bookworm": [
35-
"go:${VERSION}-1.24",
34+
"1.25-bookworm": [
35+
"go:${VERSION}-1.25",
3636
"go:${VERSION}-1",
3737
"go:${VERSION}-1-bookworm",
3838
"go:${VERSION}-bookworm"
3939
],
40-
"1.23-bookworm": [
41-
"go:${VERSION}-1.23",
40+
"1.24-bookworm": [
41+
"go:${VERSION}-1.24",
4242
"go:${VERSION}-1",
4343
"go:${VERSION}-1-bookworm",
4444
"go:${VERSION}-bookworm"
4545
],
46-
"1.24-bullseye": [
46+
"1.25-bullseye": [
4747
"go:${VERSION}-1-bullseye",
4848
"go:${VERSION}-bullseye"
4949
],
50-
"1.23-bullseye": [
50+
"1.24-bullseye": [
5151
"go:${VERSION}-1-bullseye",
5252
"go:${VERSION}-bullseye"
5353
]
@@ -90,4 +90,4 @@
9090
"git": {}
9191
}
9292
}
93-
}
93+
}

src/typescript-node/.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ARG VARIANT=22-bookworm
2-
FROM mcr.microsoft.com/devcontainers/javascript-node:1-${VARIANT}
1+
ARG VARIANT=24-bookworm
2+
FROM mcr.microsoft.com/devcontainers/javascript-node:3-${VARIANT}
33

44
# Install tslint, typescript. eslint is installed by javascript image
55
ARG NODE_MODULES="tslint-to-eslint-config typescript"

src/typescript-node/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
| *Categories* | Core, Languages |
1010
| *Image type* | Dockerfile |
1111
| *Published image* | mcr.microsoft.com/devcontainers/typescript-node |
12-
| *Available image variants* | 22 / 22-bookworm, 20 / 20-bookworm, 22-bullseye, 20-bullseye ([full list](https://mcr.microsoft.com/v2/devcontainers/typescript-node/tags/list)) |
12+
| *Available image variants* | 24 / 24-bookworm, 22 / 22-bookworm, 20 / 20-bookworm, 24-bullseye, 22-bullseye, 20-bullseye ([full list](https://mcr.microsoft.com/v2/devcontainers/typescript-node/tags/list)) |
1313
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `bookworm`, and `bullseye` variants |
1414
| *Container host OS support* | Linux, macOS, Windows |
1515
| *Container OS* | Debian |
@@ -20,18 +20,19 @@
2020
You can directly reference pre-built versions of `Dockerfile` by using the `image` property in `.devcontainer/devcontainer.json` or updating the `FROM` statement in your own `Dockerfile` to one of the following. An example `Dockerfile` is included in this repository.
2121

2222
- `mcr.microsoft.com/devcontainers/typescript-node` (latest)
23+
- `mcr.microsoft.com/devcontainers/typescript-node:24` (or `24-bookworm`, `24-bullseye` to pin to an OS version)
2324
- `mcr.microsoft.com/devcontainers/typescript-node:22` (or `22-bookworm`, `22-bullseye` to pin to an OS version)
2425
- `mcr.microsoft.com/devcontainers/typescript-node:20` (or `20-bookworm`, `20-bullseye` to pin to an OS version)
2526

2627
Refer to [this guide](https://containers.dev/guide/dockerfile) for more details.
2728

2829
You can decide how often you want updates by referencing a [semantic version](https://semver.org/) of each image. For example:
2930

30-
- `mcr.microsoft.com/devcontainers/typescript-node:2-22` (or `2-22-bookworm`, `2-22-bullseye`)
31-
- `mcr.microsoft.com/devcontainers/typescript-node:2.0-22` (or `2.0-22-bookworm`, `2.0-22-bullseye`)
32-
- `mcr.microsoft.com/devcontainers/typescript-node:2.0.0-22` (or `2.0.0-22-bookworm`, `2.0.0-22-bullseye`)
31+
- `mcr.microsoft.com/devcontainers/typescript-node:3-24` (or `3-24-bookworm`, `3-24-bullseye`)
32+
- `mcr.microsoft.com/devcontainers/typescript-node:3.0-24` (or `3.0-24-bookworm`, `3.0-24-bullseye`)
33+
- `mcr.microsoft.com/devcontainers/typescript-node:3.0.0-24` (or `3.0.0-24-bookworm`, `3.0.0-24-bullseye`)
3334

34-
However, we only do security patching on the latest [non-breaking, in support](https://github.com/devcontainers/images/issues/90) versions of images (e.g. `1-1.20`). You may want to run `apt-get update && apt-get upgrade` in your Dockerfile if you lock to a more specific version to at least pick up OS security updates.
35+
However, we only do security patching on the latest [non-breaking, in support](https://github.com/devcontainers/images/issues/90) versions of images (e.g. `3-24`). You may want to run `apt-get update && apt-get upgrade` in your Dockerfile if you lock to a more specific version to at least pick up OS security updates.
3536

3637
Beyond TypeScript, Node.js, and `git`, this image / `Dockerfile` includes `eslint`, `zsh`, [Oh My Zsh!](https://ohmyz.sh/), a non-root `node` user with `sudo` access, and a set of common dependencies for development. Since `tslint` is [now fully deprecated](https://github.com/palantir/tslint/issues/4534), the image includes `tslint-to-eslint-config` globally to help you migrate.
3738

0 commit comments

Comments
 (0)