Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 772b66f

Browse files
authored
Add Alpine 3.15, drop EOL 3.11 (#1181)
1 parent b742ef0 commit 772b66f

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

containers/alpine/.devcontainer/base.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# [Choice] Alpine version: 3.14, 3.13, 3.12, 3.11
2-
ARG VARIANT=3.13
1+
# [Choice] Alpine version: 3.15, 3.14, 3.13, 3.12, 3.11
2+
ARG VARIANT=3.15
33
FROM alpine:${VARIANT}
44

55
# [Option] Install zsh

containers/alpine/.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "Alpine",
33
"build": {
44
"dockerfile": "Dockerfile",
5-
// Update 'VARIANT' to pick an Alpine version: 3.11, 3.12, 3.13, 3.14
6-
"args": { "VARIANT": "3.14" }
5+
// Update 'VARIANT' to pick an Alpine version: 3.12, 3.13, 3.14, 3.15
6+
"args": { "VARIANT": "3.15" }
77
},
88

99
// Set *default* container specific settings.json values on container create.

containers/alpine/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
| *Categories* | Core, Other |
1111
| *Definition type* | Dockerfile |
1212
| *Published images* | mcr.microsoft.com/vscode/devcontainers/base:alpine |
13-
| *Available image variants* | 3.14, 3.13, 3.12, 3.11 ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/base/tags/list)) |
13+
| *Available image variants* | 3.15, 3.14, 3.13, 3.12 ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/base/tags/list)) |
1414
| *Published image architecture(s)* | x86-64, aarch64/arm64 |
1515
| *Works in Codespaces* | Yes |
1616
| *Container host OS support* | Linux, macOS, Windows |
@@ -24,22 +24,22 @@ See **[history](history)** for information on the contents of published images.
2424
While the definition itself works unmodified, you can select the version of Alpine the container uses by updating the `VARIANT` arg in the included `devcontainer.json` (and rebuilding if you've already created the container).
2525

2626
```json
27-
"args": { "VARIANT": "3.13" }
27+
"args": { "VARIANT": "3.14" }
2828
```
2929

3030
You can also directly reference pre-built versions of `.devcontainer/base.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.
3131

3232
- `mcr.microsoft.com/vscode/devcontainers/base:alpine` (latest)
33-
- `mcr.microsoft.com/vscode/devcontainers/base:alpine-3.11`
3433
- `mcr.microsoft.com/vscode/devcontainers/base:alpine-3.12`
3534
- `mcr.microsoft.com/vscode/devcontainers/base:alpine-3.13`
3635
- `mcr.microsoft.com/vscode/devcontainers/base:alpine-3.14`
36+
- `mcr.microsoft.com/vscode/devcontainers/base:alpine-3.15`
3737

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

4040
- `mcr.microsoft.com/vscode/devcontainers/base:0-alpine`
41-
- `mcr.microsoft.com/vscode/devcontainers/base:0.201-alpine`
42-
- `mcr.microsoft.com/vscode/devcontainers/base:0.201.5-alpine`
41+
- `mcr.microsoft.com/vscode/devcontainers/base:0.204-alpine`
42+
- `mcr.microsoft.com/vscode/devcontainers/base:0.204.0-alpine`
4343

4444
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/vscode/devcontainers/base/tags/list).
4545

containers/alpine/definition-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"variants": ["3.14", "3.13", "3.12", "3.11"],
3-
"definitionVersion": "0.203.1",
2+
"variants": ["3.15", "3.14", "3.13", "3.12"],
3+
"definitionVersion": "0.204.0",
44
"build": {
55
"latest": false,
66
"rootDistro": "alpine",
@@ -10,7 +10,7 @@
1010
"base:${VERSION}-alpine${VARIANT}"
1111
],
1212
"variantTags": {
13-
"3.14": [
13+
"3.15": [
1414
"base:${VERSION}-alpine"
1515
]
1616
}

0 commit comments

Comments
 (0)