Sha256: 94b84d910649af7b54e7247f1bff4913de8f798ea5cdda050d20f3d9d4630723

Contents?: true

Size: 338 Bytes

Versions: 2

Compression:

Stored size: 338 Bytes

Contents

# Note: This image is also built in CircleCI, so limit references to internal repositories.
FROM ruby:3.1.0

# Create app directory
WORKDIR /usr/src/app

# Copy app to directory
COPY . /usr/src/app

ENV BUNDLER_VERSION 2.2.9
RUN gem update --system
RUN gem install bundler:2.2.9
RUN bundle install

CMD ["bundle", "exec", "rake", "test"]

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
plaid-35.1.0 Dockerfile
plaid-35.0.0 Dockerfile