Sha256: b4cd8a0ae1febbba80037a940e8004351381f1947613fbc368e88748803cab73

Contents?: true

Size: 258 Bytes

Versions: 8

Compression:

Stored size: 258 Bytes

Contents

FROM ruby:3.2

RUN apt-get update && apt-get install -y \
  vim

ENV APP_HOME /app

ENV BUNDLE_GEMFILE=$APP_HOME/Gemfile \
    BUNDLE_JOBS=8

ARG BUNDLER_VERSION=2.4.20
RUN gem update --system && \
    gem install bundler:$BUNDLER_VERSION

WORKDIR $APP_HOME

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rails_key_rotator-0.2.4 Dockerfile
rails_key_rotator-0.2.3 Dockerfile
rails_key_rotator-0.2.2 Dockerfile
rails_key_rotator-0.2.1 Dockerfile
rails_key_rotator-0.2.0 Dockerfile
rails_key_rotator-0.1.3 Dockerfile
rails_key_rotator-0.1.2 Dockerfile
rails_key_rotator-0.1.1 Dockerfile