Skip to content

Commit 6a0d2e1

Browse files
authored
Update action.yml
1 parent 3ec4430 commit 6a0d2e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ runs:
66
- if: runner.os == 'Linux'
77
run: |
88
if test -d /__e && grep -q '^ID=alpine$' /etc/os-release; then
9-
apk add --root /tmp/test --repositories-file /etc/apk/repositories --allow-untrusted --no-cache --no-scripts --initdb -- docker-cli
9+
apk add --root /tmp/test --repositories-file /etc/apk/repositories --allow-untrusted --no-cache --no-scripts --initdb -- docker-cli libstdc++ patchelf
1010
export PATH=/tmp/test/usr/bin:$PATH
1111
apk add --no-cache -- libstdc++
1212
docker run --rm --interactive --user 0:0 --volume /:/hostfs --entrypoint /usr/sbin/chroot "$(docker inspect "$(hostname)" --format "{{ .Image }}")" /hostfs /bin/bash -eo pipefail -xs "$(docker inspect "$(hostname)" --format '{{ range.Mounts }}{{ if eq .Destination "/__e" }}{{ .Source }}{{ end }}{{ end }}')" <<'EOF'
1313
export DOCKER_CONFIG="$(readlink -f "$1/../../../.docker")"
1414
find "$1" -type f -executable -name 'node' -not -path '*_alpine/*' -print0 | xargs -0 -n 1 -- /bin/bash -xc 'docker run --rm --volume /:/hostfs --entrypoint /bin/cp "docker.io/library/node:$("$1" -e "console.log(process.versions.node)")-alpine" /usr/local/bin/node "/hostfs$1"' --
1515
EOF
16+
find "/__e" -type f -executable -name 'node' -not -path '*_alpine/*' -print
1617
sed -i -e 's/^ID=alpine$/ID=linux/' /etc/os-release
1718
fi
1819
shell: sh

0 commit comments

Comments
 (0)