inspec/Dockerfile
Qasim Sarfraz b3536fa6a0 Add openssh-client pkg to Dockerfile (#3254)
Signed-off-by: Qasim Sarfraz <Qasim.Sarfraz@esailors.de>
2018-07-26 14:13:11 -04:00

14 lines
398 B
Docker

FROM ruby:alpine
MAINTAINER Chef Software, Inc. <docker@chef.io>
ARG VERSION=2.2.41
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