inspec/Dockerfile
Adam Leff 79ad513a39 Build and tag docker image via Expeditor (#2144)
* 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>
2017-09-14 15:16:29 -04:00

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