# Dockerfile used to create "husyci/brakeman" image
# https://hub.docker.com/r/huskyci/brakeman/

FROM ruby:2.4-alpine

RUN apk update && apk upgrade \
	&& apk add --no-cache alpine-sdk bash openssh-client \
	&& apk add git

RUN gem install brakeman

RUN wget -O jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64
RUN chmod +x ./jq
RUN cp jq /usr/bin
