Skip to content

Commit

Permalink
Fix for Dockerfile issues building on CentOs 7. See issue HospitalRun…
Browse files Browse the repository at this point in the history
  • Loading branch information
RonanOD committed May 10, 2017
1 parent def7041 commit e4a2eb3
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,8 +9,9 @@ RUN apt-get update && apt-get install nodejs -y
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY . /usr/src/app
RUN npm install -g npm && npm install -g ember-cli@latest && npm install -g bower
RUN npm install
RUN npm install -g ember-cli
RUN latest && npm install -g bower
#RUN npm install
RUN bower install --allow-root
COPY ./server/config-example.js ./server/config.js

Expand Down

0 comments on commit e4a2eb3

Please # to comment.