mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
79ad513a39
* Build and tag docker image via Expeditor In order to provide Docker images of all unstable, current, and stable builds of InSpec, and to avoid having to manually publish Docker images each time we release InSpec, Expeditor will now take care of this for us. Signed-off-by: Adam Leff <adam@leff.co>
14 lines
376 B
Docker
14 lines
376 B
Docker
FROM ruby:alpine
|
|
MAINTAINER Chef Software, Inc. <docker@chef.io>
|
|
|
|
ARG VERSION=1.36.1
|
|
ARG GEM_SOURCE=https://rubygems.org
|
|
|
|
RUN mkdir /share
|
|
RUN apk add --update build-base libxml2-dev libffi-dev && \
|
|
gem install --no-document --source ${GEM_SOURCE} --version ${VERSION} inspec && \
|
|
apk del build-base
|
|
ENTRYPOINT ["inspec"]
|
|
CMD ["help"]
|
|
VOLUME ["/share"]
|
|
WORKDIR /share
|