Sha256: 4e7f0f84c19e1f76178549d498b307b1736b2fd7ecc1b468c409eed3b699c532

Contents?: true

Size: 694 Bytes

Versions: 4

Compression:

Stored size: 694 Bytes

Contents

FROM ruby:2.5.5
RUN cd /tmp && curl -L --output ghr.tar.gz https://github.com/tcnksm/ghr/releases/download/v0.12.0/ghr_v0.12.0_linux_amd64.tar.gz && \
    tar -xzvf ghr.tar.gz && chmod +x ghr_v0.12.0_linux_amd64/ghr && mv ghr_v0.12.0_linux_amd64/ghr /usr/local/bin/ghr && rm -rf /tmp/*

WORKDIR /gem
COPY Gemfile /gem/Gemfile

COPY sidekiq-web_custom.gemspec /gem/sidekiq-web_custom.gemspec
COPY lib/sidekiq/web_custom/version.rb /gem/lib/sidekiq/web_custom/version.rb


RUN gem update --system && gem install bundler && bundle install --jobs=3 --retry=3 && \
    rm -rf /usr/local/bundle/cache

COPY . /gem
RUN gem build sidekiq-web_custom

CMD ['bin/sidekiq', '-c', '2', '-e', 'development']

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sidekiq-web_custom-0.4.0 Dockerfile
sidekiq-web_custom-0.3.1 Dockerfile
sidekiq-web_custom-0.3.0 Dockerfile
sidekiq-web_custom-0.2.0 Dockerfile