- Remove curl from package installation to avoid curl/curl-minimal conflict - Replace curl with wget in health check and Node.js installation scripts - wget is already installed and provides same functionality 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
6 lines
153 B
Bash
Executable File
6 lines
153 B
Bash
Executable File
#!/usr/bin/env bash
|
|
wget -qO- https://rpm.nodesource.com/setup_22.x | bash -
|
|
dnf install -y nodejs
|
|
npm install -g npm@latest
|
|
node --version
|
|
npm --version |