Sha256: 7d654abd44a0288a52dbfc467cd802ffd25e0dc4ef44edb71066e0862aa5ab03
Contents?: true
Size: 292 Bytes
Versions: 18
Compression:
Stored size: 292 Bytes
Contents
FROM ruby:2.7.1 AS builder # Allow apt to work with https-based sources RUN apt-get update -yqq && apt-get install -yqq --no-install-recommends apt-transport-https RUN mkdir /app WORKDIR /app # backend COPY Gemfile.lock Gemfile /app/ RUN gem install bundler && bundle install COPY . /app
Version data entries
18 entries across 9 versions & 1 rubygems