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