Dockerfile use apk nodejs-npm module.

This commit is contained in:
Richard 2018-02-01 19:54:42 +00:00
parent 7a11594369
commit 10bff70304

View File

@ -17,7 +17,7 @@ WORKDIR /app
ADD . .
ENV NPM_CONFIG_LOGLEVEL warn
RUN apk update && apk upgrade \
&& apk add --no-cache ca-certificates nodejs \
&& apk add --no-cache ca-certificates nodejs-npm \
&& apk add --no-cache --virtual .build-dependencies python make g++ \
&& npm install \
&& apk del .build-dependencies && rm -rf /var/cache/* /tmp/npm*