Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
sneakers / Dockerfile
Size: Mime:
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

ADD . /sneakers
WORKDIR /sneakers

RUN bundle --jobs=4 --retry=3

CMD rake test