Sha256: dfef607e4997b7b4298b86a615ff9ccb66e4a7476e7136614b176a47cb010199
Contents?: true
Size: 404 Bytes
Versions: 1
Compression:
Stored size: 404 Bytes
Contents
# syntax=docker/dockerfile:1 FROM ruby:3.0-alpine RUN apk add --update \ build-base \ file \ git \ tzdata \ nodejs \ yarn RUN apk add --update \ sqlite-dev 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_7_0/test/1/dummy/Dockerfile |