Skip to content

Commit

Permalink
Add git to allow rake build
Browse files Browse the repository at this point in the history
  • Loading branch information
mattes authored and lord committed Apr 30, 2015
1 parent 7452f6b commit 506095a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM ubuntu:trusty

RUN apt-get update
RUN apt-get install -yq ruby ruby-dev build-essential
RUN apt-get install -yq ruby ruby-dev build-essential git
RUN gem install --no-ri --no-rdoc bundler
ADD Gemfile /app/Gemfile
ADD Gemfile.lock /app/Gemfile.lock
RUN cd /app; bundle install
ADD . /app
EXPOSE 4567
WORKDIR /app
CMD ["bundle", "exec", "middleman", "server"]
CMD ["bundle", "exec", "middleman", "server"]

0 comments on commit 506095a

Please sign in to comment.