diff --git a/containers/alpine-3.10-git/.devcontainer/Dockerfile b/containers/alpine-3.10-git/.devcontainer/Dockerfile index 6e366f745f..c585bc0c45 100644 --- a/containers/alpine-3.10-git/.devcontainer/Dockerfile +++ b/containers/alpine-3.10-git/.devcontainer/Dockerfile @@ -8,7 +8,8 @@ ARG GLIBC_VERSION=2.29-r0 RUN apk add --no-cache -q git \ # - # Install glibc compatibility - optional, but extensions more likely to work + # Install glibc compatibility from https://github.com/sgerrand/alpine-pkg-glibc + # This is optional, but increases odds of extensions working && apk add --no-cache ca-certificates wget libstdc++ libgcc \ && wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub \ && wget -q https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/glibc-${GLIBC_VERSION}.apk \