Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change netcore runtime in debug adapter from linux-x64 to linux-musl-x64 #135

Open
wants to merge 2 commits into
base: duct-tape
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion netcore/helper-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM --platform=$BUILDPLATFORM curlimages/curl as netcore
ARG BUILDPLATFORM
ARG TARGETPLATFORM
# assume glibc; RuntimeIDs gleaned from the getvsdbgsh script
RUN RuntimeID=$(case "$TARGETPLATFORM" in linux/amd64) echo linux-x64;; linux/arm64) echo linux-arm64;; *) exit 1;; esac); \
RUN RuntimeID=$(case "$TARGETPLATFORM" in linux/amd64) echo linux-musl-x64;; linux/arm64) echo linux-arm64;; *) exit 1;; esac); \
mkdir $HOME/vsdbg && curl -sSL https://aka.ms/getvsdbgsh | sh /dev/stdin -v latest -l $HOME/vsdbg -r $RuntimeID

# Now populate the duct-tape image with the language runtime debugging support files
Expand Down