Add git to allow rake build

This commit is contained in:
Matthias Kadenbach 2015-02-10 21:38:14 +01:00 committed by Robert Lord
parent 7452f6b172
commit 506095a1ed

View file

@ -1,7 +1,7 @@
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
@ -9,4 +9,4 @@ RUN cd /app; bundle install
ADD . /app
EXPOSE 4567
WORKDIR /app
CMD ["bundle", "exec", "middleman", "server"]
CMD ["bundle", "exec", "middleman", "server"]