Sha256: c90ff0a021b4ecf6b721731d2c7006ef8264b9513c644b9f3c7749090e5ed4fa
Contents?: true
Size: 988 Bytes
Versions: 3
Compression:
Stored size: 988 Bytes
Contents
FROM darthjee/ruby_gems:0.2.3 as base FROM darthjee/scripts:0.1.2 as scripts ###################################### FROM base as builder COPY --chown=app ./ /home/app/app/ COPY --chown=app:app --from=scripts /home/scripts/builder/bundle_builder.sh /usr/local/sbin/ ENV HOME_DIR /home/app RUN bundle_builder.sh ####################### #FINAL IMAGE FROM base RUN mkdir lib/azeroth -p USER root COPY --chown=app:app --from=builder /home/app/bundle/gems /usr/local/bundle/gems COPY --chown=app:app --from=builder /home/app/bundle/cache /usr/local/bundle/cache COPY --chown=app:app --from=builder /home/app/bundle/specifications /usr/local/bundle/specifications COPY --chown=app:app --from=builder /home/app/bundle/bin /usr/local/bundle/bin COPY --chown=app:app --from=builder /home/app/bundle/extensions /usr/local/bundle/extensions COPY --chown=app ./*.gemspec ./Gemfile /home/app/app/ COPY --chown=app ./lib/azeroth/version.rb /home/app/app/lib/azeroth/ USER app RUN bundle install
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
azeroth-0.0.7 | Dockerfile |
azeroth-0.0.6 | Dockerfile |
azeroth-0.0.5 | Dockerfile |