From b18a647d0abc08d2860243478e0c50c8d40c26f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Petazzoni?= 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 46fa5d02f..d300cfa5b 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)