Answers for "alpine bash install"

C
3

install curl in alpine linux

FROM openjdk:8-jre-alpine

RUN apk add --update \
    curl \
    && rm -rf /var/cache/apk/*
Posted by: Guest on July-30-2021
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

Code answers related to "C"

Browse Popular Code Answers by Language