Add locally installed binaries to the PATH in the node image

This commit is contained in:
Bruno Alla 2018-06-16 15:38:16 +01:00
parent 37927a8a19
commit 1809e58e78

View File

@ -5,3 +5,5 @@ WORKDIR /app
COPY ./package.json /app COPY ./package.json /app
RUN npm install && npm cache clean --force RUN npm install && npm cache clean --force
ENV PATH ./node_modules/.bin/:$PATH