codeclimate/codeclimate-fixme

View on GitHub
Dockerfile

Summary

Maintainability
Test Coverage
FROM node:6-alpine
LABEL maintainer="Code Climate <hello@codeclimate.com>"

WORKDIR /usr/src/app/

COPY engine.json /
COPY package.json ./

# Install dependencies:
RUN apk add --no-cache --virtual .run-deps grep && npm install

RUN adduser -u 9000 -S -s /bin/false app
USER app

COPY . ./

VOLUME /code
WORKDIR /code

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