add dockerized inspec

This commit is contained in:
Dominik Richter 2016-04-12 23:58:18 -04:00
parent 97040de0cc
commit ce570d3e82

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM ruby:alpine
RUN mkdir /share
RUN apk add --update \
build-base \
libxml2-dev \
libffi-dev
RUN gem install inspec --no-document
ENTRYPOINT ["inspec"]
CMD ["help"]
VOLUME ["/share"]
WORKDIR /share