Sha256: 89f7d9efb32cefcac98f3a0f47e35248dd9d38db78a832b7d0043f16a4f7f24f
Contents?: true
Size: 450 Bytes
Versions: 2
Compression:
Stored size: 450 Bytes
Contents
FROM ruby:<%= @env[:base][:ruby_version][:value] %>-alpine AS builder RUN apk add \ build-base \ postgresql-dev RUN apk add --update\ file \ git \ nodejs \ tzdata \ yarn RUN gem install bundler:<%= @env[:base][:bundler_version][:value] %> WORKDIR /app ## Install standard gems COPY Gemfile Gemfile.lock ./ RUN bundle install -j4 --retry 3 RUN yarn install COPY . ./ RUN bundle install CMD ["./entrypoints/docker-entrypoint.sh"]
Version data entries
2 entries across 1 versions & 1 rubygems