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

Commit 94a67c8

Browse files
bamurtaughbamurtaugh
andauthored
Drop Alpine EOL 3.12 (#1432)
* Drop Alpine EOL 3.12 * Update definitionVersion Co-authored-by: bamurtaugh <[email protected]>
1 parent 4a6707d commit 94a67c8

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

containers/alpine/.devcontainer/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
2+
ARG VARIANT=3.15
33
FROM mcr.microsoft.com/vscode/devcontainers/base:0-alpine-${VARIANT}
44

55
# ** [Optional] Uncomment this section to install additional packages. **

containers/alpine/.devcontainer/base.Dockerfile

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

containers/alpine/.devcontainer/devcontainer.json

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

containers/alpine/README.md

Lines changed: 2 additions & 3 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.15, 3.14, 3.13, 3.12 ([full list](https://mcr.microsoft.com/v2/vscode/devcontainers/base/tags/list)) |
13+
| *Available image variants* | 3.15, 3.14, 3.13 ([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,13 +24,12 @@ 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.14" }
27+
"args": { "VARIANT": "3.15" }
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.12`
3433
- `mcr.microsoft.com/vscode/devcontainers/base:alpine-3.13`
3534
- `mcr.microsoft.com/vscode/devcontainers/base:alpine-3.14`
3635
- `mcr.microsoft.com/vscode/devcontainers/base:alpine-3.15`

containers/alpine/definition-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"variants": ["3.15", "3.14", "3.13", "3.12"],
3-
"definitionVersion": "0.204.2",
2+
"variants": ["3.15", "3.14", "3.13"],
3+
"definitionVersion": "0.204.3",
44
"build": {
55
"latest": false,
66
"rootDistro": "alpine",

0 commit comments

Comments
 (0)