Skip to content

Commit

Permalink
Install bundle prereq's prior to running rake bootstrap in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
breandan committed Mar 24, 2016
1 parent 46763c6 commit 6e9e530
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 @@ -24,13 +24,14 @@ ADD _SUMMARY.md /tmp/
ADD .git /tmp/.git
ADD sdkdocs-template /tmp/sdkdocs-template
WORKDIR /tmp
RUN rake bootstrap
RUN gem install bundler && \
bundle install && \
rake bootstrap --trace

WORKDIR /usr/src/app

EXPOSE 4000

CMD \
gem install bundler && \
rake bootstrap --trace && \
rake preview

0 comments on commit 6e9e530

Please sign in to comment.