Sha256: 21271916c6dc0bdd5051f41d823f9739e0fc67dbd197ac58bd66ca90b02f2379
Contents?: true
Size: 309 Bytes
Versions: 8
Compression:
Stored size: 309 Bytes
Contents
FROM ubuntu:trusty RUN apt-get update 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"]
Version data entries
8 entries across 8 versions & 3 rubygems