Sha256: ecb9d506228bd9052c01184ecc71c1b10b2a4cb7269f6272024feb02274552ff

Contents?: true

Size: 622 Bytes

Versions: 3

Compression:

Stored size: 622 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

VOLUME ${code_dir}
WORKDIR ${code_dir}

CMD [ "/usr/src/app/bin/code_climate_reek" ]

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
reek-5.6.0 Dockerfile
reek-5.5.0 Dockerfile
reek-5.4.1 Dockerfile