Sha256: e60a2fbcbeeb19c8f0aa1e00b242e150bee59ed968ddfb13d15d980a195de941

Contents?: true

Size: 989 Bytes

Versions: 3

Compression:

Stored size: 989 Bytes

Contents

FROM darthjee/rails_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.3.0 Dockerfile
azeroth-0.2.0 Dockerfile
azeroth-0.1.0 Dockerfile