Skip to content

Commit f41cc2e

Browse files
Add support for alpine 3.23 (#1713)
* Add support for alpine 3.23 * Add 'latest' variant to the Alpine manifest
1 parent 7830ad2 commit f41cc2e

3 files changed

Lines changed: 10 additions & 7 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
ARG VARIANT=3.22
1+
ARG VARIANT=3.23
22
FROM alpine:${VARIANT}

src/base-alpine/README.md

Lines changed: 5 additions & 4 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.22, alpine-3.21, alpine-3.20 ([full list](https://mcr.microsoft.com/v2/devcontainers/base/tags/list)) |
12+
| *Available image variants* | alpine-3.23, alpine-3.22, alpine-3.21, alpine-3.20 ([full list](https://mcr.microsoft.com/v2/devcontainers/base/tags/list)) |
1313

1414
| *Published image architecture(s)* | x86-64, aarch64/arm64 |
1515
| *Container host OS support* | Linux, macOS, Windows |
@@ -23,6 +23,7 @@ See **[history](history)** for information on the contents of published images.
2323
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.
2424

2525
- `mcr.microsoft.com/devcontainers/base:alpine` (latest)
26+
- `mcr.microsoft.com/devcontainers/base:alpine-3.23`
2627
- `mcr.microsoft.com/devcontainers/base:alpine-3.22`
2728
- `mcr.microsoft.com/devcontainers/base:alpine-3.21`
2829
- `mcr.microsoft.com/devcontainers/base:alpine-3.20`
@@ -32,9 +33,9 @@ Refer to [this guide](https://containers.dev/guide/dockerfile) for more details.
3233

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

35-
- `mcr.microsoft.com/devcontainers/base:1-alpine`
36-
- `mcr.microsoft.com/devcontainers/base:1.1-alpine`
37-
- `mcr.microsoft.com/devcontainers/base:1.1.0-alpine`
36+
- `mcr.microsoft.com/devcontainers/base:3-alpine`
37+
- `mcr.microsoft.com/devcontainers/base:3.0-alpine`
38+
- `mcr.microsoft.com/devcontainers/base:3.0.0-alpine`
3839

3940
See [history](history) for information on the contents of each version and [here for a complete list of available tags](https://mcr.microsoft.com/v2/devcontainers/base/tags/list).
4041

src/base-alpine/manifest.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
2-
"version": "2.0.3",
2+
"version": "3.0.0",
33
"variants": [
4+
"latest",
5+
"3.23",
46
"3.22",
57
"3.21",
68
"3.20"
@@ -16,7 +18,7 @@
1618
"base:${VERSION}-alpine${VARIANT}"
1719
],
1820
"variantTags": {
19-
"3.22": [
21+
"3.23": [
2022
"base:${VERSION}-alpine"
2123
]
2224
}

0 commit comments

Comments
 (0)