Skip to content

Commit

Permalink
Fix NPM5 build dependency issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AlaricChan committed Apr 11, 2018
1 parent 4c28afd commit 04701ec
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ COPY . /RackHD/on-syslog/
WORKDIR /RackHD/on-syslog

RUN mkdir -p ./node_modules \
&& npm install --ignore-scripts --production \
&& rm -r ./node_modules/on-core ./node_modules/di \
&& ln -s /RackHD/on-core ./node_modules/on-core \
&& ln -s /RackHD/on-core/node_modules/di ./node_modules/di \
&& npm install --ignore-scripts --production
&& ln -s /RackHD/on-core/node_modules/di ./node_modules/di

EXPOSE 514/udp
CMD [ "node", "/RackHD/on-syslog/index.js" ]

0 comments on commit 04701ec

Please sign in to comment.