Skip to content

Commit

Permalink
chore: merge pull request #53 from AEGEE/use-nodemon
Browse files Browse the repository at this point in the history
Use nodemon
  • Loading branch information
serge1peshcoff authored Mar 1, 2019
2 parents 8bb75e6 + 2bb9c20 commit 5375353
Show file tree
Hide file tree
Showing 4 changed files with 2,495 additions and 4,658 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [0.4.3](https://github.com/AEGEE/oms-events/compare/0.4.2...0.4.3) (2019-03-01)


### Bug Fixes

* **general:** updated packages to fix security vulnerabilities ([68b6ba7](https://github.com/AEGEE/oms-events/commit/68b6ba7))
* **general:** use nodemon instead of supervisor. Fixes MEMB-480 ([e57b8a3](https://github.com/AEGEE/oms-events/commit/e57b8a3))



## [0.4.2](https://github.com/AEGEE/oms-events/compare/0.4.1...0.4.2) (2019-03-01)


Expand Down
5 changes: 2 additions & 3 deletions docker/oms-events/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ USER node
ENV NPM_CONFIG_PREFIX=/home/node/.npm-global
ENV PATH="/home/node/.npm-global/bin:${PATH}"

RUN npm install -g --loglevel warn supervisor && npm cache clean --force
RUN npm install -g --loglevel warn nodemon && npm cache clean --force


CMD sh /usr/app/scripts/bootstrap.sh && supervisor --watch "." --timestamp --extensions "js,json" lib/run.js
CMD sh /usr/app/scripts/bootstrap.sh && nodemon -e "js,json" lib/run.js

EXPOSE 8084
Loading

0 comments on commit 5375353

Please sign in to comment.