inspec/Dockerfile
Chef Expeditor 8033134ebe
Executed '.expeditor/update_dockerfile.sh'
Obvious fix; these changes are the result of automation not creative thinking.
2018-11-08 22:12:57 +00:00

14 lines
398 B
Docker

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