fix(BUILD): create missing dirs

This commit is contained in:
Asif Bacchus 2021-01-05 08:20:46 -07:00
parent 6b7433e320
commit b317be24d3
1 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,8 @@ ENV DELAY=500
# install livereload for node user
USER node
WORKDIR /home/node
RUN npm install -g livereload
RUN mkdir -p .npm-global/bin .npm-global/lib \
&& npm install -g livereload
# run node via tini by default
ENTRYPOINT [ "/sbin/tini", "--" ]