Skip to content

Commit 1fff5aa

Browse files
authored
Support alpine 3.19 (#897)
* Support alpine 3.19 * devcontainer upgrade * libssl1.1 is not installed on all flavors
1 parent 75d537c commit 1fff5aa

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

src/base-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.18, 3.17, 3.16
2-
ARG VARIANT=3.18
1+
# [Choice] Alpine version: 3.19 3.18, 3.17, 3.16
2+
ARG VARIANT=3.19
33
FROM alpine:${VARIANT}
44

55
ARG VARIANT

src/base-alpine/README.md

Lines changed: 2 additions & 1 deletion
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.18, alpine-3.17, alpine-3.16 ([full list](https://mcr.microsoft.com/v2/devcontainers/base/tags/list)) |
12+
| *Available image variants* | alpine-3.19, alpine-3.18, alpine-3.17, alpine-3.16 ([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,6 +22,7 @@ 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.19`
2526
- `mcr.microsoft.com/devcontainers/base:alpine-3.18`
2627
- `mcr.microsoft.com/devcontainers/base:alpine-3.17`
2728
- `mcr.microsoft.com/devcontainers/base:alpine-3.16`

src/base-alpine/manifest.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"version": "0.207.2",
33
"variants": [
4+
"3.19",
45
"3.18",
56
"3.17",
67
"3.16"
@@ -17,7 +18,7 @@
1718
"base:${VERSION}-alpine${VARIANT}"
1819
],
1920
"variantTags": {
20-
"3.18": [
21+
"3.19": [
2122
"base:${VERSION}-alpine"
2223
]
2324
}

src/base-alpine/test-project/test-utils-alpine.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ checkCommon()
128128
libstdc++ \
129129
krb5-libs \
130130
libintl \
131-
libssl1.1 \
132131
lttng-ust \
133132
tzdata \
134133
userspace-rcu \

0 commit comments

Comments
 (0)