mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
0fcbf0b155
Obvious fix; these changes are the result of automation not creative thinking.
14 lines
397 B
Docker
14 lines
397 B
Docker
FROM ruby:alpine
|
|
MAINTAINER Chef Software, Inc. <docker@chef.io>
|
|
|
|
ARG VERSION=3.4.1
|
|
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
|