Skip to content

Commit 417c33a

Browse files
fix: enable glibc on Alpine for Rust
Signed-off-by: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com>
1 parent a3908b2 commit 417c33a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/rust/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ref: https://github.com/devcontainers/spec/blob/main/schemas/devContainerFeature.schema.json
22
{
33
"id": "rust",
4-
"version": "8.0.1",
4+
"version": "8.0.2",
55
"name": "Development Container Feature - Rust",
66
"documentationURL": "https://github.com/georglauterbach/dev-container-features/tree/main/src/rust",
77
"description": "Work efficiently and effortlessly with the Rust programming language",

src/rust/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
. /etc/os-release
66

77
if [ "${ID}" = "alpine" ]; then
8-
apk add --no-cache bash coreutils
8+
apk add --no-cache bash coreutils gcompat
99
fi
1010

1111
exec /bin/bash "$(dirname "${0}")/install_actual.sh" "${@}"

0 commit comments

Comments
 (0)