Answers for "node alpine linux"

C
2

How to install npm in alpine linux

apk add --update nodejs npm
apk add --update npm

For Dockerfile runing image FROM php:7.4-fpm-alpine
add:
RUN apk add --update nodejs npm
RUN apk add --update npm
Posted by: Guest on August-14-2021
4

docker node alpine

# Copy and paste to pull this image for the latest 
docker pull node

# more specific use this line
# docker pull node:<version>-alpine 
docker pull node:14.4-alpine3.11
Posted by: Guest on June-18-2020

Code answers related to "C"

Browse Popular Code Answers by Language