Sha256: a36d9786c4d4619d3ec84a4c214baeef2c418a4c87dd83766620b5a9b93a3d90

Contents?: true

Size: 483 Bytes

Versions: 1

Compression:

Stored size: 483 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 \
  postgresql-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/2/dummy/Dockerfile