Sha256: 4975ba6ffeafe8e1f991e4831e38bdc469111e5f789a817befadee968b8575f6
Contents?: true
Size: 601 Bytes
Versions: 1
Compression:
Stored size: 601 Bytes
Contents
FROM ruby:2.3-alpine RUN apk add --no-cache git RUN apk --update add --virtual build_deps \ build-base \ ruby-dev \ libc-dev \ linux-headers \ openssl-dev RUN mkdir /myapp WORKDIR /sneakers COPY lib/sneakers/version.rb /sneakers/lib/sneakers/version.rb COPY sneakers.gemspec /sneakers/sneakers.gemspec COPY Gemfile /sneakers/Gemfile COPY Gemfile.lock /sneakers/Gemfile.lock RUN bundle --jobs=4 --retry=3 COPY . /sneakers CMD rake test
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sneakers-2.11.0 | Dockerfile |