Skip to content

Instantly share code, notes, and snippets.

@hugojosefson
Created March 4, 2023 16:04
Show Gist options
  • Save hugojosefson/b13e5ce62570a1c2f3bf277bab1b4f8a to your computer and use it in GitHub Desktop.
Save hugojosefson/b13e5ce62570a1c2f3bf277bab1b4f8a to your computer and use it in GitHub Desktop.
Install glibc+deno in alpine 3.17
#!/bin/sh
# Install glibc, deno in alpine 3.17
apk add curl wget unzip
export LANG=C.UTF-8
curl -sfSL https://raw.githubusercontent.com/Docker-Hub-frolvlad/docker-alpine-glibc/ce0f46a806ce7299dd24c14c8212bb2fc2374ab4/Dockerfile | sed -n '/RUN /,$p' | sed 's/^RUN //' | sh
curl -fsSL https://deno.land/x/install/install.sh | DENO_INSTALL=/usr/local sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment