Sha256: 0630c5809a98015dc566e4ab3f78ce256fa0f12a304c905d70c660ade2dfcbf0
Contents?: true
Size: 660 Bytes
Versions: 4
Compression:
Stored size: 660 Bytes
Contents
# CodeClimate specification: https://github.com/codeclimate/spec/blob/master/SPEC.md # # Build and run via: # docker build -t codeclimate/codeclimate-reek . && docker run codeclimate/codeclimate-reek FROM ruby:2.6.0-alpine MAINTAINER The Reek core team ENV code_dir /code ENV app_dir /usr/src/app ENV user app RUN apk --update add git ADD . ${app_dir} RUN adduser -u 9000 -D ${user} RUN chown -R ${user}:${user} ${app_dir} USER ${user} WORKDIR ${app_dir} RUN gem install rake RUN bundle install --without debugging development RUN gem install codeclimate-engine-rb VOLUME ${code_dir} WORKDIR ${code_dir} CMD [ "/usr/src/app/bin/code_climate_reek" ]
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
reek-6.0.3 | Dockerfile |
reek-6.0.2 | Dockerfile |
reek-6.0.1 | Dockerfile |
reek-6.0.0 | Dockerfile |