Sha256: a5c94c8e0a7f157607c78cd646eeac1da679c197d2517f2da12e98c4f059781d
Contents?: true
Size: 479 Bytes
Versions: 1
Compression:
Stored size: 479 Bytes
Contents
# syntax=docker/dockerfile:1 FROM ruby:2.7.4-alpine RUN apk add --update \ build-base \ file \ git \ tzdata \ nodejs \ yarn RUN apk add --update \ sqlite-dev RUN apk add --update \ build-base \ file \ git \ nodejs \ tzdata \ yarn WORKDIR /app RUN gem install bundler:2.2.28 COPY Gemfile Gemfile.lock ./ RUN bundle install -j4 --retry 3 COPY . . RUN chmod -R 755 entrypoints/docker-entrypoint.sh RUN yarn install CMD ["./entrypoints/docker-entrypoint.sh"]
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
roro-0.3.33 | lib/roro/stacks/unstoppable_developer_styles/okonomi/languages/ruby/frameworks/rails/versions/rails_6_1/test/0/layers/rails/Dockerfile |