Sha256: 45ce274abd3e0b195d993e6fd81614ed6e24e12a0ee1f204eae1fad825111a9a
Contents?: true
Size: 258 Bytes
Versions: 7
Compression:
Stored size: 258 Bytes
Contents
FROM ruby:3.0.3 RUN gem install bundler:2.2.19 -N RUN mkdir /app WORKDIR /app COPY . /app RUN bundle install --jobs 4 --retry 5 --quiet COPY entrypoint.sh /usr/bin/ RUN chmod +x /usr/bin/entrypoint.sh ENTRYPOINT [ "entrypoint.sh" ] CMD [ "bin/console" ]
Version data entries
7 entries across 7 versions & 1 rubygems