Sha256: 40ab4ff8a204137b849f392bf4f711b604b6fbbf4d8f52aeca40d3a3e5c62833

Contents?: true

Size: 601 Bytes

Versions: 2

Compression:

Stored size: 601 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.3.3-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 bundle install --without debugging development

VOLUME ${code_dir}
WORKDIR ${code_dir}

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
reek-4.5.5 Dockerfile
reek-4.5.4 Dockerfile