What is the alpine equivalent to build-essential?
Answer:
build-base
To include in a Docker image that is alpine based, you can use:
RUN apk update \
&& apk --no-cache --update add build-base
Answer:
build-base
To include in a Docker image that is alpine based, you can use:
RUN apk update \
&& apk --no-cache --update add build-base