inspec/Dockerfile

11 lines
250 B
Docker
Raw Normal View History

2016-04-13 03:58:18 +00:00
FROM ruby:alpine
RUN mkdir /share
COPY inspec.gem /
RUN apk add --update build-base libxml2-dev libffi-dev && \
gem install /inspec.gem --no-document && \
apk del build-base
2016-04-13 03:58:18 +00:00
ENTRYPOINT ["inspec"]
CMD ["help"]
VOLUME ["/share"]
WORKDIR /share