Sha256: 99d13b007bb7d06c4c496b0f8fc750e7b9adc4e915c5aaf18e5e26a8a82ce442
Contents?: true
Size: 325 Bytes
Versions: 2
Compression:
Stored size: 325 Bytes
Contents
FROM ruby:3.0.6-alpine RUN apk update RUN apk add build-base git --virtual build-dependencies RUN mkdir /stack_trace WORKDIR /stack_trace ENV BUNDLE_PATH=/bundle \ BUNDLE_BIN=/bundle/bin \ GEM_HOME=/bundle ENV PATH="${BUNDLE_BIN}:${PATH}" COPY . ./ RUN gem install bundler RUN bundle install --jobs 20 --retry 5
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
stack_trace-0.8.0 | Dockerfile |
stack_trace-0.7.0 | Dockerfile |