From a185af580a2ba994a706be1d2cdc3bb024e6f48f Mon Sep 17 00:00:00 2001 From: cirolosapio Date: Mon, 10 Jun 2024 21:38:25 +0200 Subject: [PATCH] chore: Update Alpine-bash devcontainer feature version to 0.0.2 and set default shell to bash --- src/alpine-bash/devcontainer-feature.json | 2 +- src/alpine-bash/install.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/alpine-bash/devcontainer-feature.json b/src/alpine-bash/devcontainer-feature.json index 4880793..dfd0df1 100644 --- a/src/alpine-bash/devcontainer-feature.json +++ b/src/alpine-bash/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "alpine-bash", "id": "alpine-bash", - "version": "0.0.1", + "version": "0.0.2", "description": "Installs bash on alpine", "documentationURL": "https://github.com/cirolosapio/devcontainers-features/tree/main/src/alpine-bash" } \ No newline at end of file diff --git a/src/alpine-bash/install.sh b/src/alpine-bash/install.sh index 33925bf..96717c8 100644 --- a/src/alpine-bash/install.sh +++ b/src/alpine-bash/install.sh @@ -7,5 +7,6 @@ echo "Activating feature 'alpine-bash'" apk --no-cache add bash sed -i "s|:/bin/ash|:/bin/bash|g" /etc/passwd +sed -i "s|:/bin/sh|:/bin/bash|g" /etc/passwd echo 'Done!' \ No newline at end of file