From 64b5088972a772e8f54bf85c164f11119f6d4f1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Petazzoni?= <jerome.petazzoni@gmail.com> Date: Mon, 13 Jan 2025 21:18:53 +0100 Subject: [PATCH] Update Alpine instructions (#7156) While trying to set up code-server on Alpine, I ran into build errors. To solve them, I had to add Kerberos development libs. Also, it looks like npm config doesn't work in recent version of Node and doesn't seem to be necessary. These instructions were tested in the Docker `node:20-alpine` image. --- docs/npm.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/npm.md b/docs/npm.md index 46fa5d02f505..d300cfa5bd55 100644 --- a/docs/npm.md +++ b/docs/npm.md @@ -62,8 +62,7 @@ Proceed to [installing](#installing) ## Alpine ```bash -apk add alpine-sdk bash libstdc++ libc6-compat -npm config set python python3 +apk add alpine-sdk bash libstdc++ libc6-compat python3 krb5-dev ``` Proceed to [installing](#installing)