Skip to content

Instantly share code, notes, and snippets.

View grongierisc's full-sized avatar

Guillaume Rongier grongierisc

View GitHub Profile
@grongierisc
grongierisc / download-vs-code-server.sh
Last active November 1, 2022 08:06 — forked from b01/download-vs-code-server.sh
Linux script to download latest VS Code Server, good for Docker (tested in Alpine).
#!/bin/sh
set -e
ARCH="amd64"
U_NAME=$(uname -m)
if [ "${U_NAME}" = "aarch64" ]; then
ARCH="arm64"
fi