From 9b60189cb993f1c7529482ca53283013b7ab305b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Petazzoni?= Date: Wed, 8 Jan 2025 16:36:12 +0100 Subject: [PATCH] Update Alpine instructions 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)