Sha256: 5655f083e29754bf59014881cd2e0b3f2ad6643868144a2d7905b885ac3dadb7
Contents?: true
Size: 464 Bytes
Versions: 28
Compression:
Stored size: 464 Bytes
Contents
FROM ruby:2.5.0 MAINTAINER Tung Nguyen <tongueroo@gmail.com> # This is just a sample Dockerfile. This is meant to be overriden. # Install bundle of gems first in a layer # so if the Gemfile doesnt chagne it wont have to install gems again WORKDIR /tmp COPY Gemfile* /tmp/ RUN bundle install && rm -rf /root/.bundle/cache # Add the Rails app ENV HOME /root WORKDIR /app COPY . /app RUN bundle install RUN mkdir -p tmp/cache tmp/pids EXPOSE 5001 CMD ["bin/web"]
Version data entries
28 entries across 28 versions & 1 rubygems