mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
6d2c6049da
Obvious fix; these changes are the result of automation not creative thinking.
22 lines
735 B
Docker
22 lines
735 B
Docker
FROM ruby:alpine
|
|
LABEL maintainer="Chef Software, Inc. <docker@chef.io>"
|
|
|
|
ARG EXPEDITOR_VERSION
|
|
ARG VERSION=4.23.15
|
|
|
|
# GEM_SOURCE is kept away from expeditor controlled ARGs to accomodate 3rd party distros
|
|
ARG GEM_SOURCE=https://rubygems.org
|
|
|
|
# Allow VERSION below to be controlled by either VERSION or EXPEDITOR_VERSION build arguments
|
|
ENV VERSION ${EXPEDITOR_VERSION:-${VERSION}}
|
|
|
|
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
|