Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
Fix for Dockerfile issues building on CentOs 7. See issue #1081 (#1082)
Browse files Browse the repository at this point in the history
* Fix for Dockerfile issues building on CentOs 7. See issue #1081

* Improved fix based on @jkleinsc suggestions
  • Loading branch information
Ronan O'Driscoll authored and jkleinsc committed May 18, 2017
1 parent 63d9022 commit 393127e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ 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 -g ember-cli@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 393127e

Please sign in to comment.