inspec/Dockerfile

12 lines
206 B
Docker
Raw Normal View History

2016-04-13 03:58:18 +00:00
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