inspec/Dockerfile
Miah Johnson 25b9543536 Add missing git to Dockerfile. (#2969)
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2018-04-19 13:51:08 -04:00

14 lines
383 B
Docker

FROM ruby:alpine
MAINTAINER Chef Software, Inc. <docker@chef.io>
ARG VERSION=2.1.43
ARG GEM_SOURCE=https://rubygems.org
RUN mkdir -p /share
RUN apk add --update build-base libxml2-dev libffi-dev git && \
gem install --no-document --source ${GEM_SOURCE} --version ${VERSION} inspec && \
apk del build-base
ENTRYPOINT ["inspec"]
CMD ["help"]
VOLUME ["/share"]
WORKDIR /share