Skip to content

Commit

Permalink
Support alpine 3.19 (#897)
Browse files Browse the repository at this point in the history
* Support alpine 3.19

* devcontainer upgrade

* libssl1.1 is not installed on all flavors
  • Loading branch information
eljog authored Jan 11, 2024
1 parent 75d537c commit 1fff5aa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/base-alpine/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# [Choice] Alpine version: 3.18, 3.17, 3.16
ARG VARIANT=3.18
# [Choice] Alpine version: 3.19 3.18, 3.17, 3.16
ARG VARIANT=3.19
FROM alpine:${VARIANT}

ARG VARIANT
Expand Down
3 changes: 2 additions & 1 deletion src/base-alpine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
| *Categories* | Core, Other |
| *Image type* | Dockerfile |
| *Published images* | mcr.microsoft.com/devcontainers/base:alpine |
| *Available image variants* | alpine-3.18, alpine-3.17, alpine-3.16 ([full list](https://mcr.microsoft.com/v2/devcontainers/base/tags/list)) |
| *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)) |
| *Published image architecture(s)* | x86-64, aarch64/arm64 |
| *Container host OS support* | Linux, macOS, Windows |
| *Container OS* | Alpine Linux |
Expand All @@ -22,6 +22,7 @@ See **[history](history)** for information on the contents of published images.
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.

- `mcr.microsoft.com/devcontainers/base:alpine` (latest)
- `mcr.microsoft.com/devcontainers/base:alpine-3.19`
- `mcr.microsoft.com/devcontainers/base:alpine-3.18`
- `mcr.microsoft.com/devcontainers/base:alpine-3.17`
- `mcr.microsoft.com/devcontainers/base:alpine-3.16`
Expand Down
3 changes: 2 additions & 1 deletion src/base-alpine/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"version": "0.207.2",
"variants": [
"3.19",
"3.18",
"3.17",
"3.16"
Expand All @@ -17,7 +18,7 @@
"base:${VERSION}-alpine${VARIANT}"
],
"variantTags": {
"3.18": [
"3.19": [
"base:${VERSION}-alpine"
]
}
Expand Down
1 change: 0 additions & 1 deletion src/base-alpine/test-project/test-utils-alpine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ checkCommon()
libstdc++ \
krb5-libs \
libintl \
libssl1.1 \
lttng-ust \
tzdata \
userspace-rcu \
Expand Down

0 comments on commit 1fff5aa

Please sign in to comment.