8000 Update Alpine instructions by jpetazzo · Pull Request #7156 · coder/code-server · GitHub
[go: up one dir, main page]

Skip to content

Update Alpine instructions #7156

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
jpetazzo authored Jan 8, 2025
commit 9b60189cb993f1c7529482ca53283013b7ab305b
3 changes: 1 addition & 2 deletions docs/npm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading
0