mirror of
https://github.com/inspec/inspec
synced 2024-11-13 00:17:08 +00:00
60125d890b
Signed-off-by: tyler-ball <tball@chef.io>
16 lines
473 B
Docker
16 lines
473 B
Docker
FROM ruby:alpine
|
|
MAINTAINER Chef Software, Inc. <docker@chef.io>
|
|
|
|
ARG VERSION=3.9.0
|
|
ARG GEM_SOURCE=https://rubygems.org
|
|
|
|
RUN mkdir -p /share
|
|
RUN apk add --update build-base libxml2-dev libffi-dev git openssh-client
|
|
RUN gem install --no-document --source ${GEM_SOURCE} --version ${VERSION} inspec
|
|
RUN gem install --no-document --source ${GEM_SOURCE} --version ${VERSION} inspec-bin
|
|
RUN apk del build-base
|
|
|
|
ENTRYPOINT ["inspec"]
|
|
CMD ["help"]
|
|
VOLUME ["/share"]
|
|
WORKDIR /share
|