Sha256: 8e058163fd47f5152c0a289cc8061f150c28554141f2cfd06abf4195b504e854

Contents?: true

Size: 519 Bytes

Versions: 2

Compression:

Stored size: 519 Bytes

Contents

FROM code.osu.edu:5000/asctech/docker/ruby:2.5

ENV GEM_DIR=/gem \
    VERSION_DIR=lib/osu/person

RUN yum -y update && \
  useradd --user-group deploy && \
  mkdir -p ${GEM_DIR} && \
  chown -R deploy:deploy ${GEM_DIR} /usr/local/bundle

USER deploy
WORKDIR ${GEM_DIR}
COPY --chown=deploy:deploy Gemfile* ${GEM_DIR}/
COPY --chown=deploy:deploy *.gemspec ${GEM_DIR}/
COPY --chown=deploy:deploy ${VERSION_DIR}/version.rb ${GEM_DIR}/${VERSION_DIR}/version.rb

RUN bundle install

COPY --chown=deploy:deploy . ${GEM_DIR}/

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
osu_person-0.2.2 Dockerfile
osu_person-0.2.1 Dockerfile