mirror of
https://github.com/inspec/inspec
synced 2024-11-22 20:53:11 +00:00
378b1d15d5
Normally the latest stable version would be hardcoded into the Dockerfile, but the update_version.sh script was not updated to use the new `EXPEDITOR_` prefixed environment variable. This fixes the script and the Dockerfile. Signed-off-by: Tom Duffield <tom@chef.io>
20 lines
644 B
Docker
20 lines
644 B
Docker
FROM ruby:alpine
|
|
LABEL maintainer="Chef Software, Inc. <docker@chef.io>"
|
|
|
|
ARG EXPEDITOR_VERSION
|
|
ARG VERSION=4.10.4
|
|
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
|